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

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -