境界線またはアウトライン プロパティを div の表示可能な部分だけに合わせる方法があるかどうか疑問に思っていました。
私が作った三角形に境界線を付けたいのですが、jQueryもかなり理解していますが、頑固さからCSSですべてやりたいと思います。
これが私のコードです:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>former</title>
<style type="text/css">
.trekant {
height:0px;
width:0px;
border-top:0px solid;
border-right:40px solid;/*controls angle of right corner*/
border-bottom:100px solid;/*controls bottom line width*/
border-left:40px solid;/*controls angle of left corner*/
border-color: transparent transparent #E6DD6E transparent;
margin:30px auto 0 auto;
outline:solid #000;
}
</style>
</head>
<body>
<div class="trekant">
</div>
</body>
</html>
ありがとうございました :)