Heim > Web-Frontend > HTML-Tutorial > 我有一段css pading margin 在火狐中不兼容_html/css_WEB-ITnose

我有一段css pading margin 在火狐中不兼容_html/css_WEB-ITnose

WBOY
Freigeben: 2016-06-21 09:35:38
Original
1222 Leute haben es durchsucht

.test {   	margin-top: -69px; /*for Chrome*/	margin-top: -64px\9; /*for ie*/          margin-top: -67px\9; /*请问FF safari 的应该怎么写呢*/ 	padding:8px;         如果margin 这个 用FF的hack 实现不了 那么就加在padding上        FF? padding:10px;  /*请问FF safari 的应该怎么写呢*/         } 
Nach dem Login kopieren



谢谢


回复讨论(解决方案)

-webkit-margin-top试试

http://leeiio.me/css-hack-for-firefox-opera-safari-ie/

-webkit-margin-top试试

-webkit-margin-top:-67px;

不行啊

可以注意hack的书写顺序
#tip {
background: blue; /*Firefox 背景变蓝色*/
background: red \9; /*IE8 背景变红色*/
*background: black; /*IE7 背景变黑色*/
_background: orange; /*IE6 背景变橘色*/
}



或者

firefox 的 CSS hack 写法
第一个使用了 body:empty 来区分 Firefox 1 和 2 。第二个 hack使用了全部 Firefox 浏览器的专有扩展 -moz。 -moz- 只对 Firefox有效,使用这个 Hack 大可不必担心其他浏览器的影响。

/* css document Firefox 1、Firefox 2 css hack */
body:empty .tl{ color:#f90;}
/* css document Firefox css hack */
@-moz-document url-prefix(){
.tl{ color:#f90;}
}
Opera 的 CSS hack 写法
/* css document Opera css hack */
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0){
.tl{ color:#f90;}
}
chrome、safari 等 webkit内核浏览器 的 CSS hack 写法
/* css document chrome、safari css hack */
@media screen and (-webkit-min-device-pixel-ratio:0){
.tl{ color:#f90;}
}

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage