html - <hr> tag invisible in ios & android devices browsers -
tag invisible in ios & android devices browsers code follows
html
<hr class="separator_border">
css
.separator_border { background-color: #ffffff; border: 3px none; }
the above code working when changed user agent in desktop. in actual android & ios devices browser it's not showing hr.
but in few android devices "hr" tag visible it's not happening in devices.
can suggest solution?
the problem should "border: 3px none;" make 3px of nothing. try "border: 3px solid #000;" instead.
Comments
Post a Comment