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.

chrome css outline property: chrome outline property

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

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -