css中可使用background-color属性改变边框内颜色,只需要给input元素设置“background-color:颜色值”样式即可。background-color属性设置元素的背景颜色,值为颜色名称、十六进制值和rgb代码。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
创建html文件,设置页面背景颜色。创建h1标签和内容,创建p标签和内容,为h1元素设置边框和边框背景颜色。为p元素设置边框和边框背景颜色。
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>document</title> <style> h1{ border: 1px solid red; background-color: rgb(113, 255, 201); } p{ border: 1px solid #fff; background-color: rgb(255, 182, 113); } </style> </head> <body bgcolor="#ccc"> <h1>这是一个标题</h1> <p>这是一个段落,这是一句话。</p> </body> </html>
效果如下:
推荐学习:css视频教程
以上是css怎么设置边框内颜色的详细内容。更多信息请关注PHP中文网其他相关文章!