background: url(/img/dashed.png) 0 6px no-repeat;
There is a dash that crawls up only in IE7, when there are more than 2, 3 lines of text. How to fix it?
background: url(/img/dashed.png) 0 6px no-repeat;
There is a dash that crawls up only in IE7, when there are more than 2, 3 lines of text. How to fix it?
Little information was given. What are these items? What other styles than background are applied to them? See an example in different browsers. The error naturally exists, but not as significant as yours.
In general, correcting styles for IE is a common practice. Through a conditional commentary, you connect a separate file with styles that will apply only to donkey-specific versions.
// Подключаете файл стилией для IE ниже восьмой версии <!--[if lt IE 8]> <link href= "ie7.css" rel= "stylesheet" media= "all" /> <![endif]--> // В ie7.css element { background: url( http://path/img.png) 0 15px no-repeat !important; }
Source: https://ru.stackoverflow.com/questions/136105/
All Articles