你好,我有以下代码:
.about-me-block {
width: auto;
height: 600px;
background-color: #CAF7E2;
padding: 0 10%;
}
.profile-block {
width: auto;
height: 300px;
background-color: #456990;
}
.profile-image {
width: 300px;
height: 300px;
background-color: #F45B69;
display: inline-block;
float: left;
}
.profile-text {
width: 200px;
height: 200px;
background-color: #E4FDE1;
display: inline-block;
}
<div class="about-me-block">
<div class="profile-block">
<div class="profile-image"></div>
<div class="profile-text"></div>
</div>
</div>
如何在profile-text
不使用填充的情况下水平居中对齐?我尝试了帮助vertical-align
,但没有奏效。
绝对定位的变体:
变体
Flexbox
: