I have a p tag. I want a border line next to it.
Categories
JS Fiddle
p { font-size: 12px; margin-bottom: 2px; position:relative } p::after { content:""; border-bottom:1px solid grey; width:100px; position:absolute; bottom:2px; }