お世話になっております。
現在 Laravel と Vue を用いてポートフォリオを作成しているのですが、Vuetify の textarea の line-height を変更する方法をお伺いしたいです。
【現状】
https://gyazo.com/52eacacf4f86259186f16b0ed7923c7a
【実装したいレイアウト(こちらをデフォルトにしたい)】
https://gyazo.com/d154c475651a0b13305121137a176f13
該当のコード
js
1<template> 2 <v-container> 3 <div class="work"> 4 <v-row> 5 <v-col cols="7"> 6 <v-textarea 7 outlined 8 class="textarea" 9 name="input-7-4" 10 rows="20" 11 label="Outlined textarea" 12 /> 13 </v-col> 14 </v-row> 15 </div> 16 </v-container> 17</template> 18 19<style> 20::deep/ .v-textarea textarea { 21line-height: 40px; 22} 23</style>
行った手順は以下です。
⑴ セレクトを以下に変更
① ::v-deep div.v-text-field__slot textarea
② /deep/ div.v-text-field__slot textarea
③ /deep/ textarea
④ ::v-deep textarea
⑤ .v-textarea textarea
⑥ /deep/ .v-textarea textarea
⑦ v-textarea
⑧ .textarea
⑨ .work
⑵ v-textarea 内にline-height を指定
<v-textarea v-model="textarea" line-height: 1.5rem; //一部省略 />
なお、vue のバージョンは 2.5.17 で vuetify は 2.3.18 です。
【参考にしたサイト】
https://www.tagindex.com/stylesheet/form/line_height.html
https://qiita.com/h-naito/items/f6ca679276282dce2600
セレクタの指定ミスなのか、他に原因があるのか、わからずに困っています。
何卒よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。