css - Want to make a padded color line across a page -


i want make line lets green padded 20px across page. html or css this?

i have tried simple code found on other website no success. want have line going across page, used additional background image.

why not use <hr> element , style accordingly?

html

<p>some content</p> <hr class="line"> <p>some more content</p> 

css

.line {     height:20px;     background-color: green;     border:0; } 

fiddle


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -