我正在尝试整理我的社交图标,以便当网站位于Mobile时,图标位于Div的中心。当站点位于桌面时,图标应位于Div的右侧。
我的问题:目前,图标只是左对齐,然后是移动中心。我不能让它对齐而不是左对齐。
HTML代码:
<div class="soimg">
<div class="images">
<img src="social/facebook.png"/>
<img src="social/insta.png"/>
<img src="social/twitter.png"/>
<img src="social/youtube.png"/>
</div>
</div>
CSS:
.soimg img {
height:30px;
width: auto;
margin-right: 5px;
display: inline-block;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%);
opacity: 0.4;
text-align: right;
}
.soimg img:hover {
filter: none;
-webkit-filter: grayscale(0%);
opacity: 1;
}
.images {
height:50px;
background-color:#1c1c1c;
margin-top: -20px;
margin-bottom: -20px;
}
@media screen and (max-width:700px) {
.soimg {
margin-left: auto;
margin-right: auto;
text-align: center;
}
}
答案 0 :(得分:0)
您需要指定text-align:right
。它不是默认值。
.soimg {
text-align: right;
}