搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS min-width最小宽度示例</title> <style> div { width: 300px; min-width: 400px; background: #FFC0CB; } p { float: left; min-width: 400px; background: #F0E68C; } </style> </head> <body> <div>这个div元素的最小宽度设置为400px,因此它不能比400px更窄.</div> <p>Enter some text to see how it works.</p> </body> </html>
运行结果