CSS控制border畫一棵小樹
程式碼實現
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//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></title>
<style type="text/css">
#container{
width: 300px;
background: gray;
}
#trip1{
width: 00px;
margin-left: 20px;
border-right-width: 100px;
border-right-style: solid;
border-right-color: gray;
border-bottom-width: 100px;
border-bottom-style: solid;
border-bottom-color: green;
border-left-width: 100px;
border-left-style: solid;
border-left-color: gray;
}
#trip2{
width: 00px;
border-right-width: 120px;
border-right-style: solid;
border-right-color: gray;
border-bottom-width: 120px;
border-bottom-style: solid;
border-bottom-color: green;
border-left-width: 120px;
border-left-style: solid;
border-left-color: gray;
}
#tang{
background: brown;
width: 40px;
height: 150px;
margin-left: 100px;
}
</style>
</head>
<body>
<div id="container">
<div id="trip1"></div>
<div id="trip2"></div>
<div id="tang"></div>
</div>
</body>
</html>
相關文章
- 用 vue + d3 畫一棵樹Vue
- css-borderCSS
- Python——畫一棵漂亮的櫻花樹(不同種櫻花+玫瑰+聖誕樹喔)Python
- 如何優雅的使用javascript遞迴畫一棵結構樹JavaScript遞迴
- CSS border-imageCSS
- CSS border-colorsCSS
- CSS border邊框CSS
- 純HTML5+CSS3實現一棵自己跳舞的樹HTMLCSSS3
- php 遞迴一棵樹PHP遞迴
- 如何列印一棵樹(Java)Java
- CSS border-radiusCSS
- CSS3 border-colorsCSSS3
- 【譯】繪製一棵漂亮的樹
- 建立一棵二叉排序樹排序
- [CSS LEARN]Border與多邊形CSS
- CSS 搞事技巧:border+transparentCSS
- 教你玩轉CSS border(邊框)CSS
- css3 border-radiusCSSS3
- css border-color屬性用法CSS
- CSS border屬性預設值CSS
- 一棵C#寫的樹(1) (轉)C#
- CSS border-radius 帶邊框CSS
- css的border屬性預設值CSS
- css border屬性簡單介紹CSS
- css中的border-image的用法CSS
- 如何直觀形象地樹狀列印一棵二叉樹?二叉樹
- 以一棵樹的角度分析動作遊戲遊戲
- CSS border-collapse 細線邊框CSS
- CSS--border邊框顏色漸變CSS
- CSS學習2—-padding/border/marginCSSpadding
- IE CSS Bug系列:border顯示混亂CSS
- CSS - border-box 和 content-boxCSS
- 使用clay.js繪製一棵圓形樹JS
- 全棧工程師就是一棵歪脖子樹全棧工程師
- 如何在資料庫中儲存一棵樹資料庫
- 一行 Python 程式碼搞定一棵樹Python
- P9437 『XYGOI round1』一棵樹Go
- CSS小技巧——畫個三角形CSS