how to give a background color strip in html and css

Solutions on MaxInterview for how to give a background color strip in html and css by the best coders in the world

showing results for - "how to give a background color strip in html and css"
Agustina
02 Apr 2018
1#colorstrip{
2    width: 100%; height: 2px;
3    border-style: solid;
4    border-color: white;
5    background-color: white;
6}