<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>内联块状元素</title> <style type="text/css"> a{display:inline-block; width:px;/*在默认情况下宽度不起作用*/ height:20px;/*在默认情况下高度不起作用*/ background:pink;/*设置背景颜色为粉色*/ text-align:center; /*设置文本居中显示*/ } </style> </head> <body> <a>1</a> <a>2</a> <a>3</a> <a>4</a> </body> </html>
width和height的作用对象为什么是元素的background而不是元素本身
<a>222</a>是个黑板
设置width作用的对象是黑板,黑板变宽变高,而不是“222”这几个数字变宽变高?
shenlesi66
晚安sp