用表格做一个V型的效果
做了两个版本,第一个是靠定位,外边距等等,很粗糙
第二个用表格做了,如图
源代码如下:
CSS:
table{
border:1px solid #000
}
td{
background-color: green;
width: 50px;
height:50px;
}
.red{
background-color: red!important;
width: 50px;
height:50px;
}
Body:
<div id="t"></div>
JS:
var html ="<table>"
var count=0;
for(var i=1;i<6;i++){
html+="<tr>";//打印表格5行
count++
for(var j=1;j<10;j++){//打印每行9个单元格
//count循环为:1,2,3,4
if(j==count||j==10-count){//当单元格数字为count或10-count时,将单元格打印为红色
html+="<td class='red'>";
html+="</td>"
console.log(j)
}
else{ html+="<td class='white'>";}//否则将单元格打印为透明色
}
html+="</tr>"
}
html +="</table>"
document.getElementById('t').innerHTML = html;