属性名 | resize |
---|---|
値 | none | both | horizontal | vertical |
初期値 | none |
適用可能要素 | ブロック要素 |
継承 | 継承しない |
サポート | https://caniuse.com/css-resize |
overflow に visible 以外の値が設定された要素に対して、縦方向、横方向のリサイズを許可するか否かを指定します。Internet Explorer ではサポートされていません。
.resizable { width: 20rem; height: 4rem; resize: both; overflow: hidden; background-color: #fff; border: 1px solid #ccc; }
<div class="resizable"> この領域はマウスで大きさを変更することができます。 </div>