php - html/CSS 格式中的小错误卡住 PHP 生成的 SQL 表中的第一列

标签 php html css html-table freeze

我有一个琐碎的错误,似乎没有人能够修复,但我确信它非常简单并且可能与 CSS 相关。

我希望卡住/固定第一列(即用户名),以便用户滚动浏览其他列(测试,其中有很多)。

这现在可以工作了,但是用户名的位置与表格的其余部分不同步。

看起来像这样:

enter image description here

它应该是这样的:

enter image description here

PHP 和 HTML 代码:

<?php  }elseif(isset($_POST['quiz']) && $_POST['quiz'] == "non" && $err == ""){ ?>

                <div class="col-sm-12">
            <div class="table-responsive">
                    <table class="table table-bordered table-striped table-condensed" id="table">

                    <thead>
                        <tr>
                            <td width="3%"></td>
                        <?php
                            $all_quizes = mysqli_query($con,"SELECT * FROM quizes ORDER BY FIELD(quiz_level, 'Beginner','Intermediate','Advanced'),quiz_name ASC");
                            $quizes = array();
                            while($my_rows = mysqli_fetch_array($all_quizes)){
                                array_push($quizes,$my_rows);
                            }
                            foreach($all_quizes as $record){
                        ?>

                        <th width="30%"><?php echo $record['quiz_name']; ?></th>
                        <?php } ?>
                        </tr>
                    </thead>

                    <tbody>
                    <?php foreach(@$result as $record){?>
                    <tr>

                        <td class="headcol"><?php echo $record["username"];?></td>
                            <?php
                            $counter=0;
                            echo "&nbsp;&nbsp;&nbsp;";
                            while(mysqli_num_rows($all_quizes) > $counter){
                                $current_td = mysqli_query($con,"SELECT * FROM quiz_takers WHERE username='".$record["username"]."' AND quiz_id=".$quizes[$counter][0]." ORDER BY marks DESC");
                                $td = mysqli_fetch_array($current_td);

                                if($td['percentage'] == null){

                                    echo "<td> ?</td>";
                                }else{
                                    if(intval($td["percentage"]) >= 0 && intval($td["percentage"]) <= 30){
                                        $color = 'red';
                                    }elseif(intval($td["percentage"]) > 30 && intval($td["percentage"]) <= 70){
                                        $color = '#ffbf00';
                                    }elseif(intval($td["percentage"]) <= 30){

                                    }else{
                                        $color = 'green';
                                    }
                                    echo "<td style='color:".$color."'>".round($td["percentage"],2)."%</td>";

                                }

                                $counter++;
                            }
                            /*foreach($current_td as $td){
                                echo $counter." ".$td['username'] . " - ".$quizes[$counter]['3']."<br>";
                                if($quizes[$counter]['0'] == $td['quiz_id']){
                            ?>
                            <td><?php echo $td["percentage"];?></td>
                            <?php  } $counter++;}*/ ?>
                    </tr>
                        <?php  } ?>


                    </tbody>


                    </table>
                </div>
            </div>

当前的CSS是:

<style>



.headcol {

  position:absolute;
  height:100px;

  width: 5em;
  left: -10;


  overflow-x: scroll;
  margin-left: 5em;

  padding: 0;

  top: 2;
  border-top-width: -2px;
  /*only relevant for first row*/
  margin-top: -90px;
  /*compensate for top border*/
}



</style>

有人可以建议解决方案或修复吗?

最佳答案

我认为问题出在第一个标题行的第一列,您将其定义为 3% 的宽度。此宽度应等于 .headcol

的宽度

像这样

<thead>
  <tr>
    <td width="5em"></td> //equal to the width of .headcol

此外,您可能需要调整 .headcol 的 CSS 以便更好地对齐,也许放 left: 0;

关于php - html/CSS 格式中的小错误卡住 PHP 生成的 SQL 表中的第一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49044268/

相关文章:

html - 在父鼠标悬停时更改子样式,使用 :after

javascript - 如何停止声音警报?

html - 为什么只有我网站的上半部分有响应?

javascript - 左 50% 和 margin-left negative 不起作用

php - EasyApache 更新后 mysql_connect 不起作用

php - 在 WordPress 中返回当前 URL

javascript - 显示 Jasper Reports Server 提供的 pdf

php - 将包含多个变量的 URL 作为参数发送到另一个页面

javascript - 谷歌地图 API : Geocoder: unknown property function:

CSS3 字符编码声明