スタイルシートの技

スタイルシート検定試験

  1. 次のうちで属性値を複数指定できるものを選んで下さい。
    • background
    • display
    • list-style
    • position
  2. 属性 - 属性値の組み合わせで正しくないものを選んで下さい。
    • overflow: auto;
    • background-color: transparent;
    • margin-left: none;
    • text-decoration: auto;
  3. 次のうちOperaでは動作しない属性を選んでください。
    • quotes
    • background-attachment
    • line-height
    • filter
  4. 次のうちでウェブセーフカラーのものを選んで下さい。
    • #8fc
    • #e3e
    • #c9a
    • #03c
  5. 次のHTML要素のうち、ブロック要素のものを選んでください。
    • a
    • b
    • p
    • q
  6. 「a:hover」などの「:hover」は専門的に何と定義されていでしょうか?
    • 疑似セレクタ
    • 疑似属性
    • 疑似ID
    • 疑似クラス
  7. 次の属性のうち、文字列に対して有効なものを選んでください。
    • text-indent
    • visibility
    • font-weight
    • color
  8. ウィンドウの絶対座標にオブジェクトを配置したい場合にはどの指定が正しいですか?
    • position: relative; top: 100px; left: 100px;
    • position: absolute; top: 100px; left: 100px;
    • position: relative; point: 100px 100px;
    • position: absolute; pos-x: 100px; pos-y: 100px;
  9. floatを使った場合、回り込みを解除したい時にはどの属性を使えば良いでしょうか?
    • clear
    • line-break
    • word-beak
    • white-space
  10. 次のうち、ユーザビリティの観点からあまり好ましくないものはどれでしょうか?
    • 10px
    • 10pt
    • 1.0em
    • 100%
  11. 色の指定の仕方で正しいものはどれでしょうか?
    • fuchsia
    • #123456
    • #ff3hc8
    • rgb(255,0,0)
  12. 「margin: 0px 4px 1px 10px;」と全く同じものはどれでしょうか?
    • margin-top: 0px; margin-right: 4px; margin-bottom: 1px; margin-left: 10px;
    • margin-top: 10px; margin-right: 0px; margin-bottom: 4px; margin-left: 1px;
    • margin-top: 1px; margin-right: 10px; margin-bottom: 0px; margin-left: 4px;
    • margin-top: 4px; margin-right: 1px; margin-bottom: 10px; margin-left: 0px;
  13. スタイルシートのborderを使って表現できない線種はどれでしょうか?
    • 二重線
    • 点線
    • 太線
    • 波線
  14. スタイルシートの規格を定めている機関はどこでしょうか?
    • W3C
    • ISO
    • IEC
    • IEEE
  15. font-familyの属性値として適当ではないものはどれでしょうか?
    • monospace
    • sans-serif
    • comic
    • fantasy
  16. HTML4.01で定義されている次の要素のうち、非推奨とされているものはどれでしょうか?
    • center
    • pre
    • input
    • font
top