2011-07-20 52 views
6

我需要將兩個<fieldset>對象以局部視圖形式排列在同一行上。無論我做什麼都沒有幫助。試圖將它們浮動到左側,向右側,嘗試將寬度最小化,嘗試使用display:inline選項。內部有表的字段集。如何把他們放在同一條線上?

沒有表的作品。與他們 - 不。

UPD:或者它可能與qTip有關,我試圖將它們放在其中。

+0

那麼不要使用'table's然後。我看不出你爲什麼要這樣做。 – You

+1

醫生,每當我嘗試延伸左臂時,我都會在腋窩感到痙攣。醫生:那麼,不要延長你的左臂,然後嘗試使用另一個 – Agzam

+0

你能提供一個說明你的問題的代碼示例嗎? –

回答

0

字段集的工作原理與表。刪除表格標籤中的任何樣式部分。試試這個例子。這個對我有用。

<fieldset id="fieldset3" style="padding:20px;top:230px; position: absolute;"> 
<legend>Search Results</legend> 
<form> 
    <table id="EmployeeDetails" border="1" cellpadding="3%"> 
    <tr> 
     <th>Name</th> 
     <th>Case Status</th> 
     <th>Click here to View </th> 
    </tr> 
    <tr> 
     <td>Dinesh</td> 
     <td>Occupied</td> 
     <td><button type="submit" id="Search">Search</button></td> 
    </tr> 
</table> 
</form> 
</fieldset> 
相關問題