Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cfdocument で hr タグを使用していますが、以下のように非常に太く表示されています。
私は基本的な細い線が欲しいだけです。スタイルを hr{ height:0} として指定しようとしましたが、役に立ちません。ご意見をお聞かせください。
<p>blah</p> <hr /> <p>blah</p>
境界線を none に設定してから、border-top プロパティを設定します。
hr { border:0 none; border-top:1px solid #000 }
JSFiddleデモ