vote up 1 vote down star

This is a CSS problem. I need to trim the white spaces from a div or list or paragraph.

-------------------------------------------
| This is my Text.                        |
-------------------------------------------

How to convert this div/list/paragraph (i.e. any box) to show like the following when it is needed?

--------------------
| This is my Text. |
--------------------

And the Vice-versa?

This should work regardless of the parent container.

flag

Not sure if this counts as programming... – Dave Swersky Nov 8 at 6:27
1  
I don't get you. – JMSA Nov 8 at 6:28
2  
@Dave: Not sure if stackoverflow.com/questions/404568/… counts as programming either – Jed Smith Nov 8 at 6:48

2 Answers

vote up 3 vote down check

You could change the style of the elements that contain "This is my Text" to display:inline and that should provide the desired effect.

It's worthy to note that without knowing the entire layout or rather just setting this as the default style may have unforeseen consequences (causing normally blocking elements to not block). A better solution would be to wrap the text in elements that would normally have this effect or apply specific classes to the normally blocking elements to differentiate them.

link|flag
vote up 2 vote down

div,p,ul,ol,h[1-6] are block elements, you must changed it to inline

<div style="display:inline">some content</div>
link|flag
This should not work always. Coz, applying it to list will change the look. – JMSA Nov 8 at 6:41
You're right with list, this is the nature behavior for inline elements. – jerjer Nov 8 at 6:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.