|
| 01 Mar 2012 01:02 AM |
I don't understand why this is breaking the CSS, there is nothing wrong, any help would be appreciated.
p { color:#ffffff position:fixed; top:30px; right:5px; }
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 01 Mar 2012 01:14 AM |
| That kind of mistake is the most common people usually encounter. |
|
|
| Report Abuse |
|
|
|
| 01 Mar 2012 01:15 AM |
"color:#ffffff"
Actually, I'd recommend using color names, like "white", instead of hexadecimal, when possible. The reason is that hexadecimal is not human readable, while color names are. Therefore, if you use color names when you can, you will be able to know what color it is in a glance, which is not the case if you use hexadecimal. |
|
|
| Report Abuse |
|
|
|
| 01 Mar 2012 01:58 AM |
I prefer to use hex. You can't tell the exact color something is with hex, but you can get a pretty close guess. #RRGGBB
'color:#FFF 'looks much cleaner than 'color:white;' to me personally.
Haters gonn' hate. |
|
|
| Report Abuse |
|
|
nate890
|
  |
| Joined: 22 Nov 2008 |
| Total Posts: 21686 |
|
|
| 01 Mar 2012 06:29 AM |
color:#FFFFFF /* white */
If you bother using hexadecimal, comment :D
"Bro five! Wear this to let everyone know you think they deserve a high five." |
|
|
| Report Abuse |
|
|