如何使用 CSS 对齐两张图像,一张位于右上位置,另一张位于右下位置?

发布于 2025-01-02 21:38:59 字数 747 浏览 0 评论 0原文

如何使用 CSS 对齐两张图像,一张位于右上位置,另一张位于右下位置?

这是标记

<th class="X" scope="col">
Time
<input id="ORAAsc" class="up" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORAAsc">
<input id="Desc" class="down" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORADesc">
</th>

和 CSS

.X {
    height:33px;
    background-color:#DEDEDD;
    width:75px;
    bottom:0;
    top:0;
    left:0;
    right:0;
    margin-top:20px;
    margin-bottom:20px;
    margin-right:80px;
    margin-left:80px;
}





.up{What should i place here?}

.down{What should i place here?}

感谢您的宝贵时间

How can i align two images with CSS, the one in Upper Rigth position and the other in Down-right position?

Here is the markup

<th class="X" scope="col">
Time
<input id="ORAAsc" class="up" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORAAsc">
<input id="Desc" class="down" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORADesc">
</th>

and the CSS

.X {
    height:33px;
    background-color:#DEDEDD;
    width:75px;
    bottom:0;
    top:0;
    left:0;
    right:0;
    margin-top:20px;
    margin-bottom:20px;
    margin-right:80px;
    margin-left:80px;
}





.up{What should i place here?}

.down{What should i place here?}

Thank you for your time

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2025-01-09 21:38:59

杰克瑟珀是对的。使用绝对定位时,向包含元素添加另一件事通常是个好主意:

   .x{
    position:relative;
}

这将确保图像相对于其容器的绝对定位。

jacktheripper is right. It's usually a good idea to add one other thing to the containing element when using absolute positioning:

   .x{
    position:relative;
}

This will ensure that the images will be absolutely positioned relative to that of their container.

深海少女心 2025-01-09 21:38:59

尝试

.up {
top: 0;
right: 0;
position: absolute;
}

.down {
bottom: 0;
right: 0;
position: absolute;
}

Try

.up {
top: 0;
right: 0;
position: absolute;
}

.down {
bottom: 0;
right: 0;
position: absolute;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文