【发布时间】:2018-09-17 19:14:24
【问题描述】:
如何右对齐具有最大宽度和最大高度的图像?请参阅下面的样式。 高度和宽度是动态设置的。调整宽度时,图像向左侧移动。如何防止这种情况发生并在宽度发生变化时保持图像在右边缘?
<div class="img-label-wrapper">
<img src="../assets/portal/css/x-logo.png" class="titleResource" width="60px" height="20px">
</div>
.img-label-wrapper {
position: relative;
top: -5px;
text-align: right;
width: 100%;
}
.img-label-wrapper .titleResource {
max-width: 100px !important;
max-height: 20px !important;
float: right;
margin-top: unset !important;
}
【问题讨论】:
标签: jquery html css right-align