HTML菜鸟入门9


<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>无标题文档title>
<style>
span,div{background:red;width:100px;height:100px;display:inline-block;}
style>
head>
<body>
<span>区分样式span>
<span>区分样式span>
<span>区分样式span>
<div>div>
<div>div>
<div>div>
body>
html>

运行结果显示:
HTML菜鸟入门9_第1张图片
inline-block标签特性:
1.块在一行显示;
2.行内属性标签支持宽高;
3.没有宽度时内容撑开宽度
存在的问题:
1.代码换行被解析
2.ie6 ie7不支持块属性标签的inline-block
注:加载出的页面中间空格大小为字体的一半像素(font-size/2)

你可能感兴趣的:(html,html)