Are there any differences between a{display:block;} and display in JS? -PHP Chinese website Q&A-What is the difference between a{display:block;} and display in JS? -PHP Chinese website Q&A
Please watch and learn.
display就是设置显示方式,其值可以为
display:static默认
display:none 隐藏
display:block 块级元素
display:inline 内联元素
display:inline-block 内联块级元素
display:table-cell让标签元素以表格单元格的形式呈现,类似于td标签
所以这只是display所选取的值不同, 其效果也会有所不同而已。
Are there any differences between a{display:block;} and display in JS? -PHP Chinese website Q&A-What is the difference between a{display:block;} and display in JS? -PHP Chinese website Q&A
Please watch and learn.
display就是设置显示方式,其值可以为
display:static默认
display:none 隐藏
display:block 块级元素
display:inline 内联元素
display:inline-block 内联块级元素
display:table-cell让标签元素以表格单元格的形式呈现,类似于td标签
所以这只是display所选取的值不同, 其效果也会有所不同而已。