/*Custom Styling for Divs*/
#box1 {
border: 1px solid;
border-radius: 25px;
width: 900px;
}
#box2 {
border: 1px solid;
border-radius: 25px;
width: 430px;
}
#box3 {
float: right;
border: 1px solid;
border-radius: 25px;
width: 430px;
}
#box4 {
border: 1px solid;
border-radius: 25px;
width: 900px;
}
I've encountered a challenge trying to position the third div next to the second div. Can you provide guidance on how this can be achieved successfully without using absolute/fixed positioning, as that created issues when zooming in and out?