fieldset same line

fieldset, html, line

Solution

Place them in a div container.

<style type="text/css">
    .container {
    height:100px;
    width:600px;
    background-color:gray;       
}
.left {
    float:left;
    width:200px;
    background-color:blue;
}
.right {
    float:right;
    width:400px;
    background-color:red;
}
</style>

<div class="container">
    <div class="right"><fieldset> first fildset </fieldset></div>
    <div class="left"><fieldset> second fieldset </fieldset></div>
</div>

Problem

I have 2 fieldsets: ``` <fieldset> first fildset </fieldset> <fieldset> second fieldset </fieldset> ``` how can I place them in same line?

Original source