이 글에서는 둥근 사각형 예제를 Html에서 쉽게 구현하는 방법을 중심으로 자세히 소개하고, p+css와 positioning을 통해 둥근 사각형을 구현하는 방법을 알려드리겠습니다. 관심 있는 친구들은
을 참조하세요. 질문: 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!