我想知道是否有一種方法來適應邊框或輪廓屬性只有可見部分的div。適合邊框/輪廓可見css
我想在我製作的三角形上放一個邊框,我也對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>
謝謝:)
你舉的例子是奇。你有一個名爲'.triangle'的'div',和'.trekant'的CSS設置。這有什麼關係? –