Safari Conditional CSS -


How can I read CSS only by Safari? Basically a div needs to grow 5pixels on the left side because it shows fine on ff / ie etc

thanks

edit - added code

Code:

  #subheading {background-color: # 004376; Color: #ffffff; Height: 25px; Padding: 10px; Margin: 9 93px; Margin-top: -25 pixels; Width: 761px; }  

You can do a check for a specific CSS property in WebKit Chrome will also work

  @ media screen and (-bbkit-min-device-pixel-ratio: 0) {.someClass {color: # FF0000; }}  

Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -