Just registered and here is my first question already!
I have a HTML/CSS code like this:
.123 {
position: relative;
max-width: 30%;
left: 1%;
font-family: Arial, sans-serif;
font-size: 400%;
}
.456 {
max-width: 70%;
left: 30%;
position: relative;
font-family: Arial, sans-serif;
line-height: 200%;
}
<div class="123">
<b>This is a title</b>
</div>
<div class="456">
This is some text
</div>
My question is: the 123 div never is truly next to the 456 div. What could possibly be the reason?
Thank you!