实例如下:
<html>
<head>
<meta charset="UTF-8">
<title>css3对话框设计</title>
<style>
.box{
float:left;
position:relative;
left:50%;
}
p{
float:left;
position:relative;
right:50%;
}
</style>
</head>
<body>
<div class="box">
<p>我是浮动的</p>
<p>我也是居中的</p>
</div>
</body>
</html>