CSS
element { toransform : rotate(45deg); overflow : hidden; position : relative; }
position : relative; をつけよう。(absoluteでもOK。static以外)
element { toransform : rotate(45deg); overflow : hidden; position : relative; }
position : relative; をつけよう。(absoluteでもOK。static以外)
兄弟要素の高さを合わせるならflexでいいわけですが、その子要素(いとこ要素)のheightを合わせるならJavascriptでやるのがまあ良いかなって思うって話と、ボタン位置を合わせるだけならCSSだけでいいよねって話
#box1 { width:1000px; } #box1>#box2 { width:50%; }
例えばこんな時、document.getElementById(“box2”).clientWidth や $(“#box2”).width()で値を取得すると、#box2の実際の値である500pxとして取得されてしまいます。 続きを読む