這篇文章主要為大家詳細介紹Html輕鬆實現圓角矩形範例的方法,告訴大家如何透過p+css以及定位來實現圓角矩形?有興趣的小夥伴可以參考一下
問題:如何透過p+css以及定位來實現圓角矩形?
解決方法概述:
內容:首先在
!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <title>圆角制作</title> <style type=text/css> #p { position:relative; width:400px; height:200px; background:black; margin:auto; } #plefttop { position:absolute; width:50px; height:50px; background:url("images/11.jpg") no-repeat; } #prighttop { position:absolute; width:50px; height:50px; right:-9px; top:0px; background:url("images/22.jpg") no-repeat; } #pleftbottom { position:absolute; width:50px; height:50px; left:0px; bottom:-14px; background:url("images/33.jpg") no-repeat; } #prightbottom { position:absolute; width:50px; height:50px; right:-9px; bottom:-14px; background:url("images/44.jpg") no-repeat; } </style> </head> <body> <p id=p> <p id=plefttop></p> <p id=prighttop></p> <p id=pleftbottom></p> <p id=prightbottom></p> </p> </body> </html>
注意:我的程式碼裡用的css樣式是內聯式,CSS樣式有三種:內聯式,嵌入式,外部式。
以上是Html輕鬆實現圓角矩形範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!