私は2つの子を含むdivを持っています。それぞれの子は、ブートストラップの列を使ってフレーム化されています。しかし、これらのdiv内で、私ができる必要があるのは、左のdivの場合、右にdivを基準にして縦に整列させて中央に配置する必要のあるアイコンがあることです。padded divの横にdivを垂直に整列する方法は?
右側のdivには、ボタンとして機能するアンカータグが含まれており、いくつかのパディングがあります。これにより、ボタンが下に伸び、左のdivは残りの高さを占めません。
私がここで取り上げたのは、私が話していることを示すために codepenです。
.shareContainer {
padding: 28px 0px;
}
.row {
background: #eee !important;
}
.fa-icon {
margin-left: 20px;
font-size: 2.2em;
color: #ff7350;
}
.button {
display: inline-block;
padding: 18px 50px;
padding-right: 30px;
font-size: 17px;
font-weight: 400;
font-family: "Lato";
border-radius: 2px;
letter-spacing: 0.01em;
color: #fff !important;
text-transform: uppercase;
background-color: #fb8669;
box-shadow: none;
border: none;
}
.arrowRight {
float: right;
margin-left: 20px;
}
.button:active,
.button:focus,
.button:hover {
text-transform: uppercase;
color: #fff;
text-decoration: none;
cursor: pointer;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class='container shareContainer'>
<div class='row'>
<div class="col-sm-8">
<i class='fa fa-share-square-o fa-icon'></i>
<i class='fa fa-facebook-square fa-icon'></i>
<i class='fa fa-twitter fa-icon'></i>
</div>
<div class="col-sm-4">
<a target="_blank" class='button' }>
register for event <svg class='arrowRight'width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" id="arrow-right"><path d="M9 4l7 8-7 8" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd"></path></svg>
</a>
</div>
</div>
</div>
これは、ほとんどのを助けました。私はブートストラップ4ではない(偶然にcodepenに入れてください)、私は3で、これは動作させる方法の最も簡単な説明でした。私はフレックスボックスを学ぶ必要があります。 –