我写了一个用于 div 定位的 CSS。这是CSS
background-color: white;
border-style: outset;
margin: 115px 0px 0px -40px;
当我在 firefox 中看到输出时,div 位置还可以,但是当我在 chrome 中看到它时,输出会因以下原因而失真margin: 145px 0px 0px -40px;
铬边距应该是margin: 115px 0px 0px -40px;
所以我搜索谷歌并找到了一个片段,我申请但没有工作。这是
style="width:310;height:402;background-color:white;border-style:outset; if webkit (margin:115px 0 0 -40px) else (margin:146px 0 0 -40px);"
所以指导我如何为 chrome 编写条件内联 css ......任何想法。谢谢