Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
html (ジェイド)
body .divx .divy
与えられたcss:
.divx { width: 200px; height: 200px; }
.divyの幅と高さを 100% カバーするクラスの css プロパティはbodyどれですか?
.divy
body
私が作れば
.divy { width: 100%; height: 100%; }
上記は、.divy100%のカバーを作成し.divxますbody
.divx
使えるポジションabsolute
absolute
jsFiddle here
.divy { position:absolute; top:0; left:0; width: 100%; height: 100%; }