Css miscellaneous


  1. Which of the following property allows the text direction to be overridden to support multiple languages and text flow directions in the same document?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    unicode-bidi: bidi-override | embed | normal| inherit


  1. Which of the following is the Color Format that is a defined using the keyword rgb, followed by three numbers between 0 and 255, contained in parentheses and separated by commas, with no spaces between them.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    RGB color values can also be defined using percentages. The format is the same, except that the numbers are replaced by
    percentage values between 0% and 100%.



  1. Which of the following is the Color Format that is the CSS3 HSL value with a fourth value to set the alpha channel value for the color to define the opacity of the element?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    An HSLa is specified via a function style hsla(hue,saturation, lightness, alpha), where hue, saturation, and lightness are the same as standard hsl() values, and the alpha channel value for defining opacity is a number between 0 (fully transparent) and 1 (fully opaque).


  1. Which of the following is the Color Format that is a CSS’s six-digit hexadecimal format as color defined in (X)HTML?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    CSS’s six-digit hexadecimal format is the same as color defined in (X)HTML. The format specifies color as #rrggbb, where rr is the amount of red, gg the amount of green, and bb the amount of blue, all specified in a hexadecimal value ranging from 00 to FF.



  1. Which of the following defined as alphanumeric names that correspond to some current counter value in a document?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: B

    Counters demonstrate the possibility of variable-like values in CSS. They are defined as alphanumeric names that correspond to some current counter value in a document.