Posts

Showing posts from August, 2017
CSS Hacks Targeting Firefox #Firefox 2 html> /**/ body .selector , x :-moz-any-link { color : lime ; } #Firefox 3 html> /**/ body .selector , x :-moz-any-link , x :default { color : lime ; } #Any Firefox @-moz-document url-prefix ( ) { .selector { color : lime ; } }
viewport meta tag "content" property attributes Property     Description width   -> The width of the virtual viewport of the device. Enter a number (pixels assumed), or the keyword " device-width " to set the viewport to the physical width of the device's screen. height  -> The height of the virtual viewport of the device. Enter a number (pixels assumed), or the keyword " device-height " to set the viewport to the physical height of the device's screen. initial-scale  ->  The initial zoom of the webpage, where a value of 1.0 means no zoom. minimum-scale  -> The minimum level the user is able to  zoom out  of a webpage, where a value of 1.0 means the user isn't able to at all. maximum-scale  -> The maximum level the user is able to  zoom in  on a webpage, where a value of 1.0 means the user isn't able to at all. user-scalable  -> Sets whether the user can zoom in and out of a webpage. Set to y...