이 글에서는 주로 HTML에서 둥근 사각형을 쉽게 구현하는 방법을 자세히 소개하고, p+css와 포지셔닝을 통해 둥근 사각형을 구현하는 방법을 알려드리겠습니다. 관심 있는 친구들은
을 참조하세요. 질문: p+css와 위치 지정을 통해 둥근 직사각형을 얻는 방법은 무엇입니까?
솔루션 개요:
내용: 먼저
XML/HTML 코드복사 콘텐츠를 클립보드에 <!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 무료 동영상 튜토리얼html은 고정된 테이블을 구현하고 위로 스크롤할 수 있습니다. 아래, 왼쪽 및 오른쪽프론트엔드 개발에서 일반적으로 사용되는 HTML 태그에 대한 자세한 설명5. HTML로 개인 이력서 작성 코드 예시
위 내용은 Html에서 테두리 반올림 구현 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!