使用CSS在标记<span>中添加行

时间:2016-02-10 21:48:38

标签: css3 line

我对这一行有疑问:

This line

如何使用CSS在标记<span>中执行此行?

你能帮助我吗?

1 个答案:

答案 0 :(得分:1)

试试这个:

http://codepen.io/anon/pen/obJEmE

   <span class="with-line">
     <span class="with-line-left-border"> </span>
   </span>

body {
  padding: 0;
  background-color: #1e88e5;
}

.with-line {
  position: relative;
  display: block;
  width: 200px;
  height: 3px;
  background-color: #fff;
  margin: auto;
  top: 220px;
}

.with-line .with-line-left-border {
  width: 3px;
  height: 25px;
  background-color: #fff;
  float: left;
  bottom: 10px;
  vertical-align: middle;
  position: relative;
}

我不确定你是否想要这个,下次再解释一下你的问题。

问候。