💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
**border-bottom-width** * 描述:设置对象下边框的宽度。 * 版本:CSS1 * 继承性:无 **语法** ``` border-bottom-width: 线宽; ``` 线宽 * 数值:使用数值来设置边框的宽度,如:10px。 * thin:关键词,设置默认细边框。 * medium:关键词,设置默认中等边框 * thick:关键词,设置默认粗边框 **使用说明** 使用该属性仅对对象的下边框进行设置,其他边框不受影响。 **代码示例** ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>border-bottom-width</title> <style> #container{ width: 50px; height: 50px; border: solid #000000; border-bottom-width: 10px; } </style> </head> <body> <div id="container"> </div> </body> </html> ``` ![border-bottom-width](https://box.kancloud.cn/db67294898d84d661c9bcd0005b6f548_73x74.png)