この記事では主に角丸長方形の例を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>
以上がHTML は角丸長方形の例を簡単に実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。