A: red
B: #F00
C: rgb(100%,0%,0%)
D: rgb(100,0,0)
举一反三
- 【单选题】下列颜色color属性值中,不是红色的是( )。 A: ed B: C: F00 D: gb(100%,0%,0%) E: gb(100,0,0)
- 以下选项中不能用来表示 CSS 颜色的是: A: rgb(f, 0, 0) B: FF0000 C: red D: rgb(100%, 0,0)
- 可以用以下哪些形式表示红色()。 A: red B: C: ff0000 D: rgb(255,0,0) E: rgb(100%,0%,0%)
- RGB模式中表示黄色的颜色值为(),CMYK表示红色的颜色值为() A: #FF00FF, CMYK(100%,100%,0,0) B: #FFFF00, CMYK(0%,100%,100%,0) C: #FF00FF, CMYK(0%,100%,100%,0) D: #00FFFF, CMYK(0%,100%,100%,0)
- 在RGB颜色系统中,0红色+0绿色+0蓝色= 色;
内容
- 0
对于线性渐变的方向,设置左上到右下,起始颜色为红色,终止颜色为蓝色,正确的格式为?( ) A: linear-gradient(-45deg, red 0%, blue 100%) B: linear-gradient(45deg, red 0%, blue 100%) C: linear-gradient(top left, red 0%, blue 100%) D: linear-gradient(0deg, red 0%, blue 100%)
- 1
下面在HTML中可以设置颜色为红色的方法是:()。 A: color: #FF0000; B: color: rgb(255,0,0); C: color :#F00; D: color: red;
- 2
在RGB模型中,R、G、B的取值范围是_______________。 A: 0~99 B: 0~100 C: 0~255 D: 0~256
- 3
RGB颜色模式可以为彩色图像中每个像素的RGB分量分配( )之间的强度值。 A: 0~245 B: 0~255 C: 0~256 D: 0~300
- 4
在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)