• 2022-06-07
    下列颜色color属性值中,不是红色的是( )。
    A: red
    B: #F00
    C: rgb(100%,0%,0%)
    D: rgb(100,0,0)
  • D

    内容

    • 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)