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

Popular posts from this blog

python - how we can use ajax() in views.py in django? -

matlab - Using loops to get multiple values into a cell -

python - Sequence Pattern recognition with Pybrain -