Css3에서 날카로운 모서리를 만드는 방법: 먼저 HTML 샘플 파일을 만든 다음 날카로운 모서리의 위치를 결정하고 마지막으로 지정된 div의 속성을 "top:6px;left:-3px;border-top: 0px;border-bottom" ..."을 입력하면 날카로운 모서리 효과를 얻을 수 있습니다.

이 튜토리얼의 운영 환경: windows7 시스템, css3 버전, thinkpad t480 컴퓨터.
추천: "css 비디오 튜토리얼"
날카로운 모서리가 위에 있습니다
렌더링:

코드:
<html>
<head>
<title>尖角p</title>
<style type="text/css">
#top
{
width:400px;
height:250px;
border:3px solid; /* 边框宽度为3px */
position:relative;
}
.sp1,.sp2
{
display:block;
height:0px;
width:0px;
position:absolute;
font-size:0;
line-height:0;
}
.sp1
{
top:-9px; /* 它的绝对值加上span的边框宽度等于p边框宽度的5倍 */
left:40px; /* 它来确定尖角的位置 */
border-top:0px;
border-bottom:6px solid black; /* 注意颜色的变化 */
border-right:6px solid white;
border-left:6px solid white;
}
.sp2
{
top:6px; /* 是自身边框宽度的2倍 */
left:-3px; /* 是自身边框宽度的-1倍 */
border-top:0px;
border-bottom:3px solid white;
border-right:3px solid black;
border-left:3px solid black;
}
</style>
</head>
<body>
<p id="top">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>
</html>
날카로운 모서리는 아래에 있습니다
렌더링:

코드:
<html>
<head>
<title>尖角p</title>
<style type="text/css">
#bottom
{
width:400px;
height:250px;
border:3px solid; /* 边框宽度为3px */
position:relative;
}
.sp1,.sp2
{
display:block;
height:0px;
width:0px;
position:absolute;
font-size:0;
line-height:0;
}
.sp1
{
bottom:-9px; /* 它的绝对值加上span的边框宽度等于p边框宽度的5倍 */
left:40px; /* 它来确定尖角的位置 */
border-bottom:0px;
border-top:6px solid black; /* 注意颜色的变化 */
border-right:6px solid white;
border-left:6px solid white;
}
.sp2
{
bottom:6px; /* 是自身边框宽度的2倍 */
left:-3px; /* 是自身边框宽度的-1倍 */
border-bottom:0px;
border-top:3px solid white;
border-right:3px solid black;
border-left:3px solid black;
}
</style>
</head>
<body>
<p id="bottom">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>
</html>
뾰족한 모서리가 왼쪽에 있습니다
렌더링:

코드:
<html>
<head>
<title>尖角p</title>
<style type="text/css">
#left
{
width:400px;
height:250px;
border:3px solid; /* 边框宽度为3px */
position:relative;
}
.sp1,.sp2
{
display:block;
height:0px;
width:0px;
position:absolute;
font-size:0;
line-height:0;
}
.sp1
{
left:-9px; /* 它的绝对值加上span的边框宽度等于p边框宽度的5倍 */
top:40px; /* 它来确定尖角的位置 */
border-left:0px;
border-top:6px solid white; /* 注意颜色的变化 */
border-right:6px solid black;
border-bottom:6px solid white;
}
.sp2
{
left:6px; /* 是自身边框宽度的2倍 */
top:-3px; /* 是自身边框宽度的-1倍 */
border-left:0px;
border-top:3px solid black;
border-right:3px solid white;
border-bottom:3px solid black;
}
</style>
</head>
<body>
<p id="left">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>
</html>
팁 오른쪽 코너
렌더링:

코드:
<html>
<head>
<title>尖角p</title>
<style type="text/css">
#right
{
width:400px;
height:250px;
border:3px solid; /* 边框宽度为3px */
position:relative;
}
.sp1,.sp2
{
display:block;
height:0px;
width:0px;
position:absolute;
font-size:0;
line-height:0;
}
.sp1
{
right:-9px; /* 它的绝对值加上span的边框宽度等于p边框宽度的5倍 */
top:40px; /* 它来确定尖角的位置 */
border-right:0px;
border-top:6px solid white; /* 注意颜色的变化 */
border-bottom:6px solid white;
border-left:6px solid black;
}
.sp2
{
right:6px; /* 是自身边框宽度的2倍 */
top:-3px; /* 是自身边框宽度的-1倍 */
border-right:0px;
border-top:3px solid black;
border-bottom:3px solid black;
border-left:3px solid white;
}
</style>
</head>
<body>
<p id="right">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>
</html>위 내용은 CSS3에서 날카로운 모서리를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!