這篇文章主要為大家詳細介紹了html輕鬆實現圓角矩形的方法,告訴大家如何透過p+css以及定位來實現圓角矩形?有興趣的小夥伴可以參考一下
問題:如何透過p+css以及定位來實現圓角矩形?
解決方法概述:
內容:首先在
圖片
)
Code
複製內容到剪貼簿
<!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>
1. HTML免費視訊教學
2. html實現固定表格四周並且可以上下左右滾動
3. 詳解前端發展常用的HTML標籤
4. 透過marquee標籤完成捲動效果的純html程式碼
##################################################################################### ###5. ###用HTML寫個人履歷表的程式碼實例#######以上是Html實作邊框圓角的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!