CSS浮动:对

时间:2012-09-18 10:18:54

标签: css

我试图将两个元素放在相反的方向上。我遇到了似乎做了我想要的东西,但我似乎无法将div漂浮到右边。

有谁能告诉我我做错了什么?

在下文中,我希望 section-title 位于左侧, feeds 位于右侧...

http://jsfiddle.net/n3Dvg/

蒂亚! S上。

4 个答案:

答案 0 :(得分:1)

请更正您的造型。在#section .section-title,#section .feeds 之后写下 #section .feeds 来覆盖你的风格。

例如,像这样写:

#section .section-title, #section .feeds {
 float:left;
            }
            #section .feeds {
                float: right;
                text-transform: none;
            }

选中此http://jsfiddle.net/n3Dvg/8/

答案 1 :(得分:0)

您好现在在id content

下定义 css

就像这样

#content #section .feeds{
float:right;
}

Live demo

答案 2 :(得分:0)

float: left中的section .section-title, #section .feeds存在冲突。

!important之后更改或添加float: right

答案 3 :(得分:0)

只需在!important

之后添加float:right即可
#section .feeds {
float: right !important;  // to override any conflict 
text-transform: none;
}