ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
16 lines (14 loc) • 367 B
text/less
/**
* 如果溢出框,则应该提供滚动机制
* If overflow is clipped, a scroll-bar should be added to see the rest of the content
*/
.overflow-auto {
overflow: auto ;
}
/**
* 裁剪内容,不提供滚动机制
* The overflow is clipped, and the rest of the content will be invisible
*/
.overflow-hidden {
overflow: hidden ;
}