修复桌面内的TD div定位

时间:2018-04-23 13:45:51

标签: html css css3 html-table

在我的表格中一个单元格(TD)正在定制下拉列表。 我的问题是,一旦下拉出现而不是下面的表格滚动出现在表格中,但我希望自定义下拉列表应显示在单元格下方。我认为这些问题与css:position相关但我无法做到这一点

我正在使用以下代码

  <div class="tablecontainer table-responsive">
    <table class="table table-bordered table-striped" id="results" 
     style="width:100%;">
   <tr>

<th><b>Student Level </b></th>
<th><b>Marks Value</b></th>
 </tr>
 <tr>
<td>
<div class="dropdownlist" id="dropdownprodlevel" style="position:fixed;">
     <a>PAL1</a>

    <a>PAL2</a>

    <a>PAL3</a>

    <a>PAL4</a>

    <a>DEVICE</a>
   </td>
  <td>Cell2</td>
  </tr>
  </table>
  </div>

0 个答案:

没有答案