Reputation: 775
html
<hr class="separator_border">
css
.separator_border {
background-color: #FFFFFF;
border: 3px none;
}
The above code is working when we changed the user agent in Desktop. In actual android & IOS devices browser it's not showing the hr.
But in few Android devices the "hr" tag is visible it's not happening in all the devices.
Can anyone suggest a solution?
Upvotes: 0
Views: 1113
Reputation: 436
The Problem should be the "border: 3px none;" you make 3px of nothing. Try "border: 3px solid #000;" instead.
Upvotes: 2