您的位置:首页 > Web前端 > CSS

21_css布局3_定位布局.html

2015-06-01 16:34 369 查看
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>css布局3-定位布局</title><style type="text/css">div{margin:0;padding:0;}div{width:100px;height:100px;}#one{background:red;}#two{background:blue;position:absolute;top:50px;left:150px;}#three{background:green;}</style></head><body><div id="one">1</div><div id="two">2</div><div id="three">3</div></body></html>

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息