div 中的图像右对齐

发布于 2024-12-10 02:58:41 字数 382 浏览 0 评论 0原文

我有这样的东西:

<div id="read_more_right">
    <a href="1"><img src='1'></a>
    <a href="1"><img src='1'></a>
    <a href="1"><img src='1'></a>
</div>

我想将所有这些图像在 div 中向右对齐

我使用这个

#read_more_right div
{
  align: right;
}

,但它不起作用。我怎样才能将其向右对齐?

i have something like:

<div id="read_more_right">
    <a href="1"><img src='1'></a>
    <a href="1"><img src='1'></a>
    <a href="1"><img src='1'></a>
</div>

i want to align all those images to the right in a div

I use this

#read_more_right div
{
  align: right;
}

but it doesn't work. How can I allign this to the right?

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

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

发布评论

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

评论(7

南笙 2024-12-17 02:58:41

它是 text-align: right; 而不仅仅是 align

It's text-align: right; instead of only align

乱世争霸 2024-12-17 02:58:41

您可以使用:

#read_more_right a{
    float:right;
    clear:right;
}

http://jsfiddle.net/pE47J/

You could use:

#read_more_right a{
    float:right;
    clear:right;
}

http://jsfiddle.net/pE47J/

昵称有卵用 2024-12-17 02:58:41

如果您尝试根据 ID 选择 div,则需要按以下方式声明它:

div#read_more_right { text-align: right; }

If you're trying to select your div based on ID you need to declare it in the following fashion:

div#read_more_right { text-align: right; }

注定孤独终老 2024-12-17 02:58:41

尝试 text-align: right; ——在某些情况下,您可能需要在 div 上设置显式宽度。

Try text-align: right; -- you may need to set an explicit width on the div in some cases.

若水般的淡然安静女子 2024-12-17 02:58:41

我不太确定,但我认为你的语法是错误的。试试这个;它对我有用:

div#read_more_right 
{ 
text-align: right; 
}

I'm not really sure, but I think your syntax is wrong. Try this; it worked for me:

div#read_more_right 
{ 
text-align: right; 
}
雨后咖啡店 2024-12-17 02:58:41

尝试 text-align: right;

我知道它不是文本..但这就是你想要的。

try text-align: right;

I know its not text.. but that's the one you want.

梦言归人 2024-12-17 02:58:41

另请参阅:什么左对齐和右对齐两个 div 标签的最佳方法是什么? 对于类似问题的一些答案和 this 可以很好地概述浮动和对齐属性。

See also: What is the best way to left align and right align two div tags? for some answers to a similar problem and this for a good overview of float and alignment properties.

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