CSS 参考手册
CSS display 属性
使用继承值 - 这个例子演示了如何使用继承属性的值。
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { display: inline } p { display: inherit } </style> </head> <body> <p>这两个段落生成内联盒子,和它的结果</p> <p>这两个元素之间没有距离。</p> </body> </html>
运行结果:
点击运行 »