将水平线放在两个div之间的中间

时间:2018-08-28 12:28:14

标签: html css

我有以下HTML / CSS / JS:

<div id="blockcart-wrapper">
  <div class="blockcart cart-preview">
    <div class="header">
      <a rel="nofollow" href="#">
        <img class="cart-icon" src="https://via.placeholder.com/20x20" onclick="toggleClass()">

      </a>
    </div>
    <div class="body" id="shopping-cart-body">
      <div class="close"><a href="" onclick="toggleClass()">X</a></div>
      <ul>
      </ul>
      <div class="shopping-cart-header">CART</div>
      <div class="products-container">
        <div class="product">
          <span class="prodcut-image"><img src="https://via.placeholder.com/250x100"></span>
          <div class="product-details">
            <div class="name-header">This is a very long test name</div>
            <div class="product-quantity-details">
              <span class="quantity">QTY</span>
              <span class="color-circle"></span>
              <span class="color">COLOR</span>
            </div>
            <div class="price-open">
              <span class="product-price">XX.XX</span>
              <span class="product-link"><a href="#">open</a></span>
            </div>
          </div>
        </div>

      </div>
      <div class="checkout">
        <div class="taxes">
          <span class="label">Taxes</span>
          <span class="value">0</span>
          <hr>
        </div>
        <div class="cart-total">
          <span class="label">Total</span>
          <span class="value">0</span>
        </div>
        <button><a href="#">Checkout</a></button>
      </div>
    </div>
  </div>
</div>

CSS:

.cart-preview {
float: right;
position: relative;
}

.cart-preview a,
.cart-preview a:hover,
.cart-preview a:visited {
text-decoration: none;
color: inherit;
}

.cart-preview .header {
display: block;
font-weight: bold;
border: 1px solid #808080;
padding: 5px;
cursor: pointer;
background-color: #fff;
}

.cart-preview .body {
visibility: visible;
position: fixed;
height: 100%;
top: 0;
width: 400px;
z-index: 101;
background-color: #fff;
transition: right 1s linear;
right: -400px;
}

.cart-preview .body.open {
visibility: visible;
transition: right 1s linear;
right: 0px;
}

.cart-preview .body .shopping-cart-body {
font-family: 'IBMPlexSerif';
width: 100%;
text-align: center;
}

.cart-preview .body .close{
margin-top: 20px;
margin-left: 20px;
font-size: 30px;
float: left;
}
.cart-preview .body .shopping-cart-header{
font-family: 'IBMPlexSans';
font-size: 45px;
margin-top: 40px;
text-align: center;
}
.cart-preview .body .products-container {
position: relative;
height: 100%;
width: 100%;
margin-top: 15px;
overflow: auto;
}

.product {
display: flex;
}

.product>div {
width: 50%;
}

.product .prodcut-image {
margin-right: 10px;
}

.product img {
width: 100%;
height: auto;
}

.cart-preview .body .products-container>.product-image {
position: absolute;
width: 50%;
left: 0;
}

.cart-preview .body .products-container>.product-details {
position: absolute;
width: 50%;
float: left;
}


.cart-preview .body .products-container .color-circle:before {
content: ' \25CF';
font-size: 30px;
}

.cart-preview .body .checkout {
position: absolute;
top: 80%;
height: 100%;
width: 100%;
background: white;
}

.product-quantity-details .quantity{
float: left;
text-align: center;
border: 2px solid black;
margin-right: 10px;
background: white;
width: 36px;
height: 36px;
font-size: 15px;
line-height: 33px;
color: black;
}

.cart-preview .product{
margin-top: 10px;
}

.product-quantity-details .quantity:after{
content: 'x'
}
.price-open .product-price:after{
  content: '€';
}
.cart-preview .body .checkout>button {
position: absolute;
background: black;
text-align: center;
vertical-align: middle;
border: none;
color: white;
top: 13%;
line-height: 14px;
bottom: 50px;
height: 40px;
width: 205px;
left: 25%;
}

.checkout .taxes{
position: absolute;
width: 100%;
top: 5%;
}

.checkout .cart-total{
position: absolute;
width: 100%;
top: 10%;
float: left;
}

.cart-total .value {
margin-right: 20px;
float: right;
}
.cart-total .value:after {
content:'€'
}

.cart-total .label {
margin-left: 20px;
float: left;
}


.taxes .value {
margin-right: 20px;
float: right;
}

.taxes .label {
margin-left: 20px;
float: left;
}

.taxes>hr{
margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
border-color: black;
}

.product-quantity-details{
align-items: center;
display: inline-flex;
}
.product-details{
display: flex;
flex-direction: column;
align-items: flex-start
}

和JavaScript:

function toggleClass() {
  document.getElementById('shopping-cart-body').classList.toggle('open');
} 

现在,我要实现在div内放置<hr>并将类结帐始终放置在税款和总金额之间的中间。
我该如何实现?我尝试了身高:50%,最高:50%。 我用codepen总结了一下:
https://codepen.io/anon/pen/EeyEPg

更新:
我刚刚学习了如何使用div实现效果,所以我需要在其他两个div之间对齐这个新的div,因此我更新了代码笔。

2 个答案:

答案 0 :(得分:5)

<hr>标签在HTML5中的含义与以前的HTML版本不同。 W3Schools对此有很好的描述,但是基本上它曾经是视觉元素,而现在是结构元素。它象征着内容的两个不同部分之间的主题突破。

根据您的问题,我假设您正在尝试实现视觉效果。您根本不需要<hr>标签!只需像这样使用border-bottom:

div {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

答案 1 :(得分:1)

我建议使用border-bottom而不是<hr>标签,例如:

https://codepen.io/RACCH/pen/gdMeGQ

function toggleClass() {
  document.getElementById('shopping-cart-body').classList.toggle('open');
} 
.cart-preview {
float: right;
position: relative;
}

.cart-preview a,
.cart-preview a:hover,
.cart-preview a:visited {
text-decoration: none;
color: inherit;
}

.cart-preview .header {
display: block;
font-weight: bold;
border: 1px solid #808080;
padding: 5px;
cursor: pointer;
background-color: #fff;
}

.cart-preview .body {
visibility: visible;
position: fixed;
height: 100%;
top: 0;
width: 400px;
z-index: 101;
background-color: #fff;
transition: right 1s linear;
right: -400px;
}

.cart-preview .body.open {
visibility: visible;
transition: right 1s linear;
right: 0px;
}

.cart-preview .body .shopping-cart-body {
font-family: 'IBMPlexSerif';
width: 100%;
text-align: center;
}

.cart-preview .body .close{
margin-top: 20px;
margin-left: 20px;
font-size: 30px;
float: left;
}
.cart-preview .body .shopping-cart-header{
font-family: 'IBMPlexSans';
font-size: 45px;
margin-top: 40px;
text-align: center;
}
.cart-preview .body .products-container {
position: relative;
height: 100%;
width: 100%;
margin-top: 15px;
overflow: auto;
}

.product {
display: flex;
}

.product>div {
width: 50%;
}

.product .prodcut-image {
margin-right: 10px;
}

.product img {
width: 100%;
height: auto;
}

.cart-preview .body .products-container>.product-image {
position: absolute;
width: 50%;
left: 0;
}

.cart-preview .body .products-container>.product-details {
position: absolute;
width: 50%;
float: left;
}


.cart-preview .body .products-container .color-circle:before {
content: ' \25CF';
font-size: 30px;
}

.cart-preview .body .checkout {
position: absolute;
top: 80%;
height: 100%;
width: 100%;
background: white;
}

.product-quantity-details .quantity{
float: left;
text-align: center;
border: 2px solid black;
margin-right: 10px;
background: white;
width: 36px;
height: 36px;
font-size: 15px;
line-height: 33px;
color: black;
}

.cart-preview .product{
margin-top: 10px;
}

.product-quantity-details .quantity:after{
content: 'x'
}
.price-open .product-price:after{
  content: '€';
}
.cart-preview .body .checkout>button {
position: absolute;
background: black;
text-align: center;
vertical-align: middle;
border: none;
color: white;
top: 13%;
line-height: 14px;
bottom: 50px;
height: 40px;
width: 205px;
left: 25%;
}

.checkout .taxes{
position: absolute;
/* width: 100%; */
top: 5%;
}

.checkout .cart-total{
position: absolute;
width: 100%;
top: 10%;
float: left;
}

.cart-total .value {
margin-right: 20px;
float: right;
}
.cart-total .value:after {
content:'€'
}

.cart-total .label {
margin-left: 20px;
float: left;
}


.taxes .value {
/* margin-right: 20px; */
float: right;
}

.taxes .label {
/* margin-left: 20px; */
float: left;
}

.taxes>hr{
margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
border-color: black;
}

.taxes {
  border-bottom: 1px solid black;
    margin: 0px 22px;
    width: calc(100% - 48px);
  padding-bottom: 2px;
}

.product-quantity-details{
align-items: center;
display: inline-flex;
}
.product-details{
display: flex;
flex-direction: column;
align-items: flex-start
}
<div id="blockcart-wrapper">
  <div class="blockcart cart-preview">
    <div class="header">
      <a rel="nofollow" href="#">
        <img class="cart-icon" src="https://via.placeholder.com/20x20" onclick="toggleClass()">

      </a>
    </div>
    <div class="body" id="shopping-cart-body">
      <div class="close"><a href="" onclick="toggleClass()">X</a></div>
      <ul>
      </ul>
      <div class="shopping-cart-header">CART</div>
      <div class="products-container">
        <div class="product">
          <span class="prodcut-image"><img src="https://via.placeholder.com/250x100"></span>
          <div class="product-details">
            <div class="name-header">This is a very long test name</div>
            <div class="product-quantity-details">
              <span class="quantity">QTY</span>
              <span class="color-circle"></span>
              <span class="color">COLOR</span>
            </div>
            <div class="price-open">
              <span class="product-price">XX.XX</span>
              <span class="product-link"><a href="#">open</a></span>
            </div>
          </div>
        </div>

      </div>
      <div class="checkout">
        <div class="taxes">
          <span class="label">Taxes</span>
          <span class="value">0</span>
          
        </div>
        <div class="cart-total">
          <span class="label">Total</span>
          <span class="value">0</span>
        </div>
        <button><a href="#">Checkout</a></button>
      </div>
    </div>
  </div>
</div>