<h1>对于文本对齐,请参见 CSS 文本一章。
<p>
<div>
.center提示:如果宽度是 100%,则对齐没有效果。
{
margin-left:auto;
margin-right:auto;
width:70%;
background-color:#b0e0e6;
}
.right注释:绝对定位元素会被从正常流中删除,并且能够交叠元素。
{
position:absolute;
right:0px;
width:300px;
background-color:#b0e0e6;
}
body使用 float 属性来进行左和右对齐
{
margin:0;
padding:0;
}
.container
{
position:relative;
width:100%;
}
.right
{
position:absolute;
right:0px;
width:300px;
background-color:#b0e0e6;
}
.right跨浏览器兼容性问题
{
float:right;
width:300px;
background-color:#b0e0e6;
}
body
{
margin:0;
padding:0;
}
.right
{
float:right;
width:300px;
background-color:#b0e0e6;
}