この記事では主に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>
2.
htmlは周囲に固定されたテーブルを実現し、上下左右にスクロールできます3. よく使用されるHTMLタグの詳細な説明フロントエンド開発
4. マーキータグによるスクロール効果を実現する純粋な HTML コード
5. HTML で個人履歴書を作成するコード例
以上がHTMLで境界線の丸めを実装する例を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。