Home > Web Front-end > HTML Tutorial > 你可能不知道的行内元素和块元素最主要的区别_html/css_WEB-ITnose

你可能不知道的行内元素和块元素最主要的区别_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:17:18
Original
1325 people have browsed it

  今天在练习当中,遇到了一个问题,写一个列表时,

我想实现的效果是这样的

但是实现的效果确是这样的

太丑了!

写的css是这样子的

li{   display;inline;   width:20px;   height:20px;   list-style:none;   }    
Copy after login

对,有的人可能一眼就看出了问题所在,行内元素不能设置宽度和高度的

li{   width:20px;   height:20px;   list-style:none;   }    
Copy after login

但是这样的结果就是

宽度和高度正常了,但是li元素立了起来

网上找了好久,解决方案就是

li{   float:left;   width:20px;   height:20px;   list-style:none;   }    
Copy after login

就是设置左浮动,

虽然会比较简单,但是新手真的可能会遇到这种问题的

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template