johno / furtive

A forward-thinking, lightweight, css microframework
http://furtive.co
MIT License
613 stars 40 forks source link

Invalid value for word-wrap #42

Closed variadico closed 9 years ago

variadico commented 9 years ago

Hi, there.

So, I noticed this rule at the end of furtive.css.

table th, table td {
  padding: 0.25rem;
  word-wrap: none;
  line-height: 1; }

What is word-wrap: none; supposed to do? According to MDN and W3C, none isn't a valid value for word-wrap.

https://developer.mozilla.org/en-US/docs/Web/CSS/word-wrap http://dev.w3.org/csswg/css-text-3/#propdef-word-wrap

Thanks! :smiley:

johno commented 9 years ago

To be honest, I can't remember when writing that. I imagine I was aiming for word-wrap: normal;.

variadico commented 9 years ago

Ha, okay. I'll assume you meant normal.

johno commented 9 years ago

Resolved with #46.