how to add lines between div rows html

Solutions on MaxInterview for how to add lines between div rows html by the best coders in the world

showing results for - "how to add lines between div rows html"
Jaylene
25 Jul 2019
1.divider {
2  border-bottom: 1px solid black;
3}
4
5<p class="divided">
6  <span>Content 1</span>
7  <span class="divider"></span>
8  <span>Content 2</span>
9</p>