Issue
How to make a hr element appear at ionic framework? When i do hr, it shows nothing/invisible, or view get's blank.
There is a ionic compenent to make hrs (v1)? If there is, which one?
Thanks in advance.
Solution
Use this to test if it would show up;
hr {
border: 2px solid red !important;
height: 10px !important;
width: 500px !important;
background: blue !important;
display: block !important;
font-size: 2em !important;
opacity: 1 !important;
visibility: visible !important;
}
Note: This is just a test. using "!important" is not ideal. From here you should try and determine why it is not showing
Answered By - blecaf
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.