Is there any alternative for bikeshedding CSS3 property? It doesn’t seem to be supported yet.
Is there any alternative for bikeshedding CSS3 property? It doesn’t seem to be supported
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The white-space property
In CSS3, The
white-spaceproperty is a shorthand for thewhite-space-collapsing(I guessbikesheddingmeans they don’t know what to call it yet) andtext-wrapproperties. Thewhite-spaceproperty is a CSS 2.1 property supported by most browsers and there are two values for it that collapse new lines:normal(The initial value).nowrapBut what does collapsing line feed characters mean?
According to CSS 2.1:
According to CSS 3:
Reality:
Most browsers transform line feed characters into a space. So what you really want is to set the
white-space-collapsingproperty todiscardnotcollapseor tocollapseand then add a zero width space character before the line break.What to do till browser support
Remove white-space from your HTML document:
To:
Or: