我有用于推荐的 HTML 和 CSS,在JSFIDDLE DEMO中。这里的问题是“:after”内容在移动视图中放错了位置,或者没有正确对齐,我需要对齐它,以便它需要保持不变在移动视图和普通视图中的位置,有人有什么想法吗?
<div>
<div class="testi-inno" id="testi-one">
<p>“this place having some text, which is of lorger or amaller size”</p>
</div>
</div>
<div class="testi-img" style="clear:both;">
<img src="" alt=" " width="70" height="70"/>
</div>
<p class="testi-par">name of client</p>
<p class="testi-paras">designation</p>
</div>
CSS:
.testi-inno p:after {
content: ' ';
position: absolute;
width: 0;
height: 0;
border-right: 20px solid transparent;
border-top: 20px solid #fff;
border-left: 20px solid transparent;
border-bottom: 20px solid transparent;
top: 19%;
left: 42%;
}
.testi-inno{
background:#fff;
margin:10px;
box-shadow: 10px 10px 5px #888888;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.testi-inno p{
margin:15px;
margin-bottom:15px !important;
padding-top: 10%;
padding-bottom: 10%;
}
.testi-img img{
background-repeat: no-repeat;
background-position: 50%;
border-radius: 50%;
width: 80px;
height: 80px;
margin-top: 7%;
margin-left: 34%;
}