已为我提供了一个模型屏幕,并且在此代码库中我们已经具有.css文件和引导程序类。我只是想知道要使用什么类来获得这两种效果?新单词在它自己的白框中,在OR标签的中间输入OR。
谢谢!
答案 0 :(得分:0)
在HTML中:
<div class='hr-or'></div>
CSS
div.hr-or {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
text-align: center;
height: 0px;
line-height: 0px;
}
div.hr-or:before {
content: 'OR';
background-color: #fff;
}