Posts by Francisco.Cardoso • 1 point
1 post
-
0
votes2
answers1263
viewsA: How to customize the side edges of a DIV?
You can hide the edges using CSS. div{ border-style: solid; border-bottom-style: none; border-top-style: none; } In the HTML document itself: <style> div{ border-style: solid;…