百度试题 题目在CSS中,下列设置背景颜色为黑色的代码错误的是()。 A.background-color: blackB.background: RGB(0,0,0)C.background: #FFFFFFD.background-color: #000相关知识点: 试题来源: 解析 C 反馈 收藏
这一关我们用background-color属性给body元素一个背景颜色为black; 如果这时页面变成了黑色,证明我们页面中是有body元素的; 以下例子演示如何给body应用一个黑色背景的代码: 代码语言:javascript 复制 body{background-color:black;} 过关目标 用CSS把页面中body元素的背景色变成黑色; 从而证明我们页面中拥有一个body元...
这一关我们用background-color属性给body元素一个背景颜色为black; 如果这时页面变成了黑色,证明我们页面中是有body元素的; 以下例子演示如何给body应用一个黑色背景的代码: body{background-color:black;} 过关目标 用CSS把页面中body元素的背景色变成黑色; 从而证明我们页面中拥有一个body元素; 过关条件 body元素必...
Colourful CSS code on a black background software,站酷海洛,一站式正版视觉内容平台,站酷旗下品牌.授权内容包含正版商业图片、艺术插画、矢量、视频、音乐素材、字体等,已先后为阿里巴巴、京东、亚马逊、小米、联想、奥美、盛世长城、百度、360、招商银行、工商银行等数
CSS code: html, body{margin:0;padding:0; }/*设置body的子元素水平垂直居中*/body{height:100vh;display:flex;justify-content:center;align-items:center;background-color:black; }/*设置p中文字样式*/p{color:white;/*1. font 文档地址:http://www.w3school.com.cn/cssref/pr_font_font.asp; ...
实际上background默认的颜色就是透明的属性,其使用场景: 当一个元素覆盖在另外一个元素之上,而你想显示下面的元素,这时你就需要把上面这个元素的background设置为transparent (2)、transparent属性在不同css版本下的使用: 在css1中,transparent被用来作为background-color的一个参数值,用于表示背景透明。
background-color:blue!important;/* All browsers but IE6 */ *background-color:black;/* IE6, IE7 */ +background-color:yellow;/* IE6, IE7*/ background-color:gray\9;/* IE6, IE7, IE8, IE9, IE10 */ background-color:purple\0;/* IE8, IE9, IE10 */ ...
background-color: white; border: 1px solid black; } .door{ width: 100px; height: 135px; background-color: #1033d9; transform: translate(150px,-137px); } .window{ z-index: 1; position: relative; width: 100px; height: 100px; background-color: white; border: 1px solid black...
Alternatively, create them and open up the curly brackets. Next, define the background-color property with the value you want.Say you want to change the background color of links to yellow. Then you’d add the following code:a { color: #000000; background-color: #FFFF00; } Here's ...
In your CSS file (main.css), add the following code at the end of the file. css Copy .light-theme { color: #000000; background: #00FF00; } In this example, #000000 specifies black for the font color, and #00FF00 specifies green for the background color. In your HTML file ...