首页
CSS
CSS 高度/宽度
试用:高度和宽度属性
运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { height: 50px; width: 100%; border: 1px solid #4CAF50; } </style> </head> <body> <h2>CSS height and width properties</h2> <div>This div element has a height of 50 pixels and a width of 100%.</div> </body> </html>