Tailwindscss を使用して、list-disc クラスを使用して箇条書きのスタイルを設定するにはどうすればよいですか?
私のpackage.jsonには以下が含まれます:
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/line-clamp": "^0.2.0",
"@tailwindcss/typography": "^0.4.0",
"tailwindcss": "^2.1.1",
"tailwindcss-stimulus-components": "^2.1.2",
<ul class="list-disc">
/typography プラグインを使用した場合と使用しない場合の両方を使用しclass="prose"
てみましたが、見た目は異なりますが、どちらも期待どおりではなく、Firefox と Chrome は同じように見えます。
コンテナーがない場合 (リスト 1) class="prose"
、箇条書きは完全にスタイル設定されておらず、インデントもなく、ブラウザーの既定の箇条書きが表示されます。
class="prose"
コンテナー (リスト 2) を使用すると、ぶら下げインデントと明るい箇条書きが作成されますが、ブラウザーの既定の箇条書き (二重箇条書き記号) も含まれます。
そのビューを作成するための HTML は次のとおりです。
<div class="container mx-auto m-4">
<h3>List 1</h3>
<div>
<ul class="list-disc">
<li>Bullet one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence.</li>
<li>Shorter second sentence. </li>
</ul>
</div>
<h3>List 2</h3>
<div class="prose">
<ul class="list-disc">
<li>Bullet one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence, one long sentence.</li>
<li>Shorter second sentence. </li>
</ul>
</div>
</div>
私は Tailwindcss にかなり慣れていないので、デフォルトの箇条書きを「リセット」する親要素を見落としている可能性がありますか?
考えられる原因: 原因はm-4
コンテナー div のクラスです。マージンを追加すると、画面外にぶら下がっているブラウザーの既定の箇条書きが表示されます。