You cannot have two legends for a given set of fields, but is there a way to get the effect of a legend without using a tag <legend>?
<fieldset>
<legend>
Some Text
</legend>
</fieldset>
I can add align=rightlegends to the tag to make it on the right side, but again, I cannot have two legends. I would like to have a legend on the left, and something like a legend on the right . Something like the image below.
How can I accomplish this using HTML and CSS? Here's the scenario , I basically want to combine these two. On the left will be the plain text of the legend, and on the right there will be a drop-down list if that matters.

Update
Here is the code I'm working with:
#shifter {
position: relative;
}
#cataright {
position: absolute;
top: -25px;
right: 20px;
font-weight: bold;
}
.grey {
padding: 15px;
padding-left: 30px;
padding-right: 30px;
border: solid black 3px;
border-radius: 7px;
background-color: #DDDDDD;
}
<fieldset class="grey" id="shifter">
<legend>
Title
</legend>
<div id="cataright">
Sort by
<select id="sort" onchange="sort();">
<option value="original">Release Date</option>
<option value="popularity">Popularity</option>
<option value="rating">Highest Rated</option>
</select>
</div>
</fieldset>
Run codeHide result
gator