In my HTML document, I've created a div element with a border:
.box {border: 1px solid black; width: 100%; height: 200px}
<div class="box"></div>
Now, I'm looking to enhance this div by adding a second vertical line that will divide the box in half, positioned 30px from the left edge of the box:
30px remaining width
____________________________
| | |
| | |
| | |
|______|____________________|
I have been exploring CSS3 properties and pseudo-elements but haven't found a solution to achieve this effect yet. Any suggestions or solutions would be greatly appreciated!
Thank you!