为了你的目的,因为你正在使用
absolute
定位,然后
translate
相当于对应的
top
,
right
,
bottom
或
left
价值观。只需将translate中的值添加到这些值中,就可以得到以下内容:
body {
font-family: "Helvetica Neue";
font-size: 20px;
font-weight: normal;
}
section {
max-width: 450px;
margin: 50px auto;
}
div {
max-width: 255px;
word-wrap: break-word;
margin-bottom: 20px;
line-height: 24px;
}
.clear {
clear: both
}
.from-me {
position: relative;
padding: 8px 14px;
color: #ffffff;
background: #5ca9db;
border-radius: 12px;
float: right;
margin-left: 56px;
}
.from-me:before {
content: "";
position: absolute;
bottom: 0;
right: -7px;
height: 20px;
border-right: 20px solid #5ca9db;
border-bottom-left-radius: 16px 14px;
}
.from-me:after {
content: "";
position: absolute;
bottom: 0;
right: -26px;
width: 26px;
height: 20px;
background: #ffffff;
border-bottom-left-radius: 10px;
}
.from-them {
position: relative;
padding: 8px 14px;
background: #f2f3f5;
border-radius: 12px;
float: left;
margin-right: 56px;
}
.from-them:before {
content: "";
position: absolute;
bottom: 0;
left: -7px;
height: 20px;
border-left: 20px solid #f2f3f5;
border-bottom-right-radius: 16px 14px;
}
.from-them:after {
content: "";
position: absolute;
bottom: 0;
left: -26px;
width: 26px;
height: 20px;
background: #ffffff;
border-bottom-right-radius: 10px;
}
<section>
<div class="from-me">
<p>Hey there!What's up?!</p>
</div>
<div class="clear"></div>
</section>
<section>
<div class="from-them">
<p>Hey there!What's up?!</p>
</div>
<div class="clear"></div>
</section>