I'm trying to make two horizontal divisons using <div>
tag in html, but I couldn't make it. Can anyone help me make horizontal division using html and css with <div>
tags?
I'm trying to make two horizontal divisons using <div>
tag in html, but I couldn't make it. Can anyone help me make horizontal division using html and css with <div>
tags?
Set the
float
property for eachdiv
to be matched, for exampleleft
to each, give each of them enough width so that the parent contains them.DEMO
Works well in every cases and is followed in many places...