gpt4 book ai didi

jquery - 将图像与最大宽度和最大高度右对齐

转载 作者:行者123 更新时间:2023-12-01 08:37:04 25 4
gpt4 key购买 nike

如何右对齐给定最大宽度和最大高度的图像?请参阅下面的样式。高度和宽度是动态设置的。调整宽度时,图像会向左侧移动。如何防止这种情况发生并在宽度更改时将图像保持在右边缘?

    <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;
}

最佳答案

只需使用 flexmargin-left: auto 使图像右对齐,并且不要在 img 标签中指定 img 尺寸。

.img-label-wrapper {
display: flex;
}

.titleResource {
max-width: 100px;
max-height: 20px;
margin-left: auto;
}
<div class="img-label-wrapper">
<img class="titleResource" src="https://cdn.sstatic.net/Sites/stackoverflow/company/img/logos/so/so-logo.svg?v=a010291124bf">
</div>

关于jquery - 将图像与最大宽度和最大高度右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52363661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com