如何获得UI效果

时间:2019-04-19 20:50:08

标签: twitter-bootstrap

已为我提供了一个模型屏幕,并且在此代码库中我们已经具有.css文件和引导程序类。我只是想知道要使用什么类来获得这两种效果?新单词在它自己的白框中,在OR标签的中间输入OR。

Text

Image

谢谢!

1 个答案:

答案 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;
}