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.
いくつかの<hr/>要素を備えたナビがあります。できれば純粋な CSS (3?) では、水平方向の罫線の幅を auto から X ピクセル数を引いた値に設定するにはどうすればよいでしょうか?
<hr/>
これはこの質問を複製しません。これは、不可能な負のパディングに相当するもののためです。
使ってみてmargin-right
margin-right
または、より具体的なものに Javascript を使用することもできます。例:
CSS:
hr { margin-right:20px; width:auto; }
デモ