Span Contenteditable Width Won't Work
When the span tag is used with the attribute contenteditable='true' then it ignores all width css
Solution 1:
span is a display:inline
element. Width doesn't work on inline elements.
Apply either display:inline-block;
or display:block;
to the span.
Post a Comment for "Span Contenteditable Width Won't Work"