html - CSS outline property appearing as two separate line in firefox -
i using css outline property create dashed line. while line renders correctly in chrome , safari, in firefox appears 2 separate lines. if adjust size of window can these 2 line perfect alignment appear single line, should not have this.
css
.dash-border{ outline-style: dashed; outline-color: #fff; width: 100%; position:absolute; bottom: 80px; }
html
<div class="dash-border"></div>
try use -moz
, example:
.dash-border { outline-style: dashed; outline-color: #fff; -moz-outline-style:dashed; -moz-outline-color: #fff; width: 100%; position:absolute; bottom: 80px; }
Comments
Post a Comment