Check out this simple webpage: https://jsfiddle.net/enxgz2Lm/1/
The webpage is structured with a side menu and a tasks container.
Within the tasks container, there is a row container that includes a checkbox, title on the left, and details on the right.
I'm specifically inquiring about the editable title element.
The title element has the attribute contenteditable="true". I want it to expand to occupy 100% of the available space. If the text exceeds the available space, I would like it to display partially and hide the rest without wrapping into new lines.
In the provided webpage, you can see that I achieved most of what I wanted. However, I'm struggling to maintain the width of the title at 100% of the available space.
Note: If you uncomment the CSS line "width: 470px", you'll get an idea of how the final webpage should look.