2

如何在此处浮动此文本: 在此处输入图像描述

HTML:

<div id="rightSide">
    <legend>Note:</legend>
    <p> If selecting recurrence please specifiy when the recurrence  ends with the Final Date (the last and final date of the event) field.</p>
</div>

CSS:

#rightSide {
    background-color:#eee;
    width:20em;
    padding:5px;
    padding-right:-20em;
    margin:0 auto;
    float:right;
    border:1px solid #CCC;
    font:normal 12px Arial;
    color:#666666
}
4

3 回答 3

1

在“Title”之后添加这个 div 并使除“Note” div 之外的所有其他潜水都向左浮动

于 2012-05-23T15:05:29.327 回答
1

我知道这已经得到解答,但我想扔掉我用来做布局的东西,叫做http://960.gs 。它将处理必须清除这些浮动,以及很好地将所有东西放在你想要的地方。

于 2012-05-23T19:29:48.433 回答
1

制作左列和右列display:inline-block;vertical-alignment:top;

于 2012-05-23T19:32:21.710 回答