数据分析师2017-10-01 00:16:21
What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A-What is the connection between a{display:block;} and display in JS? -PHP Chinese website Q&A
Let’s take a look and learn.
怪我咯2017-02-11 17:42:56
display就是设置显示方式,其值可以为
display:static默认
display:none 隐藏
display:block 块级元素
display:inline 内联元素
display:inline-block 内联块级元素
display:table-cell让标签元素以表格单元格的形式呈现,类似于td标签
所以这只是display所选取的值不同, 其效果也会有所不同而已。