css - How to make two fieldset horizontally? -
i have form 2 fieldset elements
<form> <fieldset> </fieldset> <fieldset> </fieldset> </form>
i need make horizontally?
just float them , add width.
fieldset { float: left; width: 50%; }
Comments
Post a Comment