Hairlines / Borders
All hairlines (thin borders) are made with :after
and :before
pseudo elements instead of usual CSS borders. This method allows to have true 0.5px (for iOS Retina) and 0.33px (for iPhone X/Plus) hairlines
The rule is simple:
- “bottom” and “right” hairlines are made using
:after
pseudo elements - “left” and “top” hairlines are made using
:before
pseudo elements
So, for example, if you want to change navbar’s bottom hairline color, you need to change background-color of :after
element:
.navbar:after {
background-color: red;
}
To remove bottom hairline on navbar and top hairline on toolbar:
.navbar:after {
display:none;
}
.toolbar:before {
display:none;
}
no-hairline Class
This helper class can be used to remove hairline. Currently it is supported on Navbar, Toolbar, Subnavbar, Searchbar, Card and its elements (card header, footer).
To remove hairline from navbar:
<div class="navbar no-hairline">
...
</div>
no-hairlines Classes
no-hairlines
class on List View and Content Block to remove outer hairlines.no-hairlines-md
does the same but only for MD theme.no-hairlines-ios
does the same but only for iOS theme.no-hairlines-between
class on List View to remove hairlines between list items.no-hairlines-between-md
does the same but only for MD theme.no-hairlines-between-ios
does the same but only for MD theme.
<!-- remove outer hairlines -->
<div class="list no-hairlines">
...
</div>
<!-- remove hairlines between items -->
<div class="list no-hairlines-between">
...
</div>
<!-- remove hairlines between items -->
<div class="list no-hairlines-between">
...
</div>
<!-- remove hairlines between items only for MD theme -->
<div class="list no-hairlines-between-md">
...
</div>
当前内容版权归 Framework7 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 Framework7 .