运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> .a { display: contents; border: 1px solid red; background-color: lightgrey; padding: 10px; width: 200px; } .b { border: 1px solid blue; background-color: lightblue; padding: 10px; } </style> </head> <body> <h1>The display Property</h1> <h2>display: contents:</h2> <div class="a"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam semper diam at erat pulvinar, at pulvinar felis blandit. <div class="b">HELLO WORLD!</div> Vestibulum volutpat tellus diam, consequat gravida libero rhoncus ut. </div> <p>display: contents does not work in Edge, prior version 79.</p> </body> </html>