<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS构建图形</title>
<style type="text/css">
#circle{
width: 100px;
height: 100px;
background-color: #4285F4;
border-radius: 50%;/*我的理解是各边长度的百分比*/
text-align: center;
line-height: 100px;
float: left;
}
#oval{
background-color: #4285F4;
text-align: center;
line-height: 100px;
width: 200px;
height: 100px;
border-radius: 50%;
float:left;
}
#triangle-up{
font-size: 12px;
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
background-color: #4285F4;
text-align: center;
float: left;
margin-left: 10px;
}
#triangle-down{
text-align: center;
width: 0;
height: 0;
border-left: 50px solid pink;
border-right: 50px solid pink;
border-top: 100px solid red;
float:left;
margin-left: 10px;
}
</style>
</head>
<body>
<p id="circle">圆形</p>
<p id="oval">椭圆</p>
<p id="triangle-up">上三角形</p>
<p id="triangle-down">下三角形</p>
</body>
</html>
我想在图形中添加文字 在三角形中文字老是下移,原因是啥?多谢
因為你設定了width:0;寬度為0,文字沒有顯示的空間自然一直向下換行,可以用偽代碼實現
因為看到三角形只是p的border,文字是在p的content裡面的
標籤內的文字預設與
基线
對齊。 而這裡的基線可以看成是 border 的內邊界。所以
上三角的基线位置在上方,容器区域在上方; 下三角的基线位置在下方,容器区域在下方
。文字的white-space屬性預設是忽略空白。寬度為 0 的情況下垂直展示文字