div中间的水平线

时间:2016-11-19 19:48:13

标签: html css

我想在div中间划一条线。在下图中,该行应位于红色框的中间。

enter image description here

我尝试使用行高,但无法做到。

以下是代码:

HTML / CSS:



.wrap {
  text-align: center;
  margin: 20px;
}
.links {
  padding: 0 10px;
  border-top: 1px solid #000;
  height: 1px;
  line-height: 0.1em;
}
.dot {
  width: 20px;
  height: 20px;
  background: red;
  float: left;
  margin-right: 150px;
  position: relative;
  top: -10px;
}

<div class="wrap">
  <div class="links">
    <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
  </div>
</div>
&#13;
&#13;
&#13;

演示: https://jsfiddle.net/nkq468xg/

4 个答案:

答案 0 :(得分:13)

您可以在Flexbox上使用links,对于行,您可以在wrap元素上使用:before伪元素。

&#13;
&#13;
.wrap {
  text-align: center;
  margin: 20px;
  position: relative;
}
.links {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.wrap:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 1px solid black;
  background: black;
  width: 100%;
  transform: translateY(-50%);
}
.dot {
  width: 20px;
  height: 20px;
  background: red;
}
&#13;
<div class="wrap">
  <div class="links">
    <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
  </div>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:2)

这里有一条线实际位于顶部,但它确实为HTML添加了另一个元素:

https://jsfiddle.net/nkq468xg/2/

&#13;
&#13;
.wrap {
   text-align: center; 
   margin: 20px; 
}

.links { 
    height: 20px;
    position: relative;
}
hr { border: 0;
height: 1px;
background: black;
position: absolute;
top: 1px;
width: 100%;
}
.dot {
  width: 20px;
  height: 20px;
  background: red;
  float: left;
  margin-right: 150px;
}
&#13;
  <div class="wrap">
  <div class="links">
    <hr>
   <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
  </div>   
  </div>  
&#13;
&#13;
&#13;

答案 2 :(得分:2)

您可以使用伪元素,例如:after

.links {
    padding: 0 10px;
    overflow: auto; // Your div will have the height of the overflowing elements
}

.links::after {
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    display: block;
    position: relative;
    top: 10px;
}

答案 3 :(得分:1)

在SO(“运行代码段”蓝色按钮)上查看您的问题中的代码段,这是您需要的吗? 在position: relative; top: -10px;的代码中添加了.dot

.dot {
    position: relative;
    top: -10px;
}

小提琴:https://jsfiddle.net/nkq468xg/3/