css - Line Break on Space -
Is css treated as a space line break possible? I have HTML:
& lt; Li & gt; This and that & lt; / Li & gt; I like this to show:
this and that
You can try styling it
width: 0; Together with the default overflow: visible , this will generate that effect
but note that overflow Could be forced to
Edit : display: table (instead of block ) or display: inline-table (instead of inline-block ) can fix those issues
Comments
Post a Comment