わからないこと
大きさを%で指定して、ウィンドウの大きさに合わせて要素の大きさを変えたいのですがうまくいきません。
(electronで作ってます)
html
1<textarea id="sendMes" rows="1" maxlength="500"></textarea>
css
1html{ 2 height: 100%; 3 width: 100%; 4} 5 6body{ 7 background-color: #18181b; 8 color: #dedee3; 9 font-family:"メイリオ", "Meiryo", "sans-serif"; 10 overflow: hidden; 11 12 height: 100%; 13 width: 100%; 14} 15 16#sendMes{ 17 position: absolute; 18 resize: none; 19 20 margin-top: 5px; 21 22 width: 98.2%; 23 right: 10px; 24 bottom: 50px; 25 26 padding-top: 10px; 27 padding-left: 10px; 28 padding-bottom: 10px; 29 30 font-family:"メイリオ", "Meiryo", "sans-serif"; 31 color: white; 32 border-radius: 3px; 33 background-color: #464649; 34 35}
両端に10pxぐらいの余白をあけて表示したいのですが、もし他にいい方法があるのなら教えてほしいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。