9 回答
TA贡献107条经验 获得超146个赞
<li style="float:left";> 这行代码写错了 <li style="float:left;">
.tupian ul li{ width:180px; height:120px; text-decoration:none; list-style-type:none;}
text-decoration:none; 是给a标签用的,去除下划线
3. .tupian ul li a{ width:227px; height:100px;}
a是内联元素,想要设置宽高,必须设置display:block;或者display:inline-block;
4. .tupian ul li img{ width:200px; height:140px; float:left; border:1px solid #000; text-decoration:none; color:#F00;}
text-decoration:none; 是给a标签用的,去除下划线
color:#F00;是描述字体的颜色
5.综合 2、3、4的宽度和高度, 我凌乱了,醉的不要不要的
总结:刚接触前端,没有知识基础,推荐按照课程学习
http://www.imooc.com/course/programdetail/pid/32
不懂可以问我
TA贡献2条经验 获得超0个赞
我觉得第一步是将其变为块状元素。
1、display:inline-block;
2、display:block;
3、float:left....
4、position:absolute;
其次,之所以没显示,觉得可能是因为width设置的原因,可以尝试去掉设定的高度
- 9 回答
- 1 关注
- 6331 浏览
相关问题推荐
添加回答
举报