前提・実現したいこと
txtで保存した小説を、コピペせずに<object>を使ってサイトに表示し見やすい大きさに変更したい。
発生している問題・エラーメッセージ
フォントサイズが変わらない
該当のソースコード
html
1<div><object data="./01.txt" id="noveltext" type="txt/plain"></object></div>
css
1div{ 2 height: 100%; 3 background-color: rgba(255,255,255,0.5); 4} 5@media(min-width:1330px){ 6 div{ 7 width: 80%; 8 margin: 0 auto; 9 height: 100%; 10 } 11} 12object{ 13 width: 100%; 14 height: 20em; 15 overflow: none; 16 padding: auto 0; 17 font-family: inherit; 18 font-size: 200%; 19}
試したこと
上記の通りの他に
divをh1にする。
補足情報
html5
css3

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/05/01 13:20
2018/05/01 13:28 編集