2017-04-06 65 views
0

我想在移动设备上显示响应表。问题是包含无线电的最右边的列太靠近屏幕的边缘。因此,我增加了一个保证金权利。但是,当我在移动设备上打开页面时,边距消失。添加一个空列会使表格变得奇怪。有没有其他方法可以为移动设备上的响应表提供保证金?我只是不想让最右边的列太靠近边缘。我设置的边距在移动设备上消失

<meta name="viewport" content="width=device-width, initial-scale=1"> 
<form ng-submit="submit()"> 
    <div class="table-responsive"> 
     <table class="table table-striped table-bordered"> 

CSS:

@media only screen and (max-width: 600px) { 
    .table-responsive{ 
     margin-right: 5rem !important; 
    } 
} 

HTML:

<!DOCTYPE html> 
<html lang="zh-CN"> 
<head> 
    <title>中国工程院无线投票系统</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> 
    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
    <link rel="stylesheet" href="css/vote.css"> 
</head> 
<body ng-app="vote" ng-controller="vote_ctrl" ng-init="init()" ng-show="is_start"> 
<h2 class="sub-header"> 
    <span ng-bind="voteData.department"></span>第<span ng-bind="voteData.round"></span>轮 
    <span ng-bind="voteData.group"></span><span ng-bind="voteData.vote_type"></span>第 
    <span ng-bind="voteData.times"></span>次 
</h2> 
<form ng-submit="submit()"> 
    <div class="table-responsive"> 
     <table class="table table-striped table-bordered"> 
      <thead> 
      <tr> 
       <th rowspan="2">提名书号</th> 
       <th rowspan="2">姓名</th> 
       <th rowspan="2">年龄</th> 
       <th rowspan="2">学科专业</th> 
       <th rowspan="2">工作单位</th> 
       <th colspan="3" ng-if="voteData.ballot_type =='记分'">圈选栏</th> 
       <th colspan="2" ng-if="voteData.ballot_type =='表决'">圈选栏</th> 
      </tr> 
      <tr> 
       <th ng-if="voteData.ballot_type =='记分'">A</th> 
       <th ng-if="voteData.ballot_type =='记分'">B</th> 
       <th ng-if="voteData.ballot_type =='记分'">C</th> 

       <th ng-if="voteData.ballot_type =='表决'"><i class="glyphicon glyphicon-ok"></i></th> 
       <th ng-if="voteData.ballot_type =='表决'"><i class="glyphicon glyphicon-remove"></i></th> 
      </tr> 
      </thead> 
      <tbody> 
      <tr ng-repeat="item in voteData.candidates"> 
       <td>{{item.candidate_num}}</td> 
       <td>{{item.name}}</td> 
       <td>{{item.age}}</td> 
       <td>{{item.major}}</td> 
       <td>{{item.company}}</td> 

       <td ng-if="voteData.ballot_type =='记分'"> 
        <input type="radio" name="{{item}}" ng-model="item.score" value="3" required> 
       </td> 
       <td ng-if="voteData.ballot_type =='记分'"> 
        <input type="radio" name="{{item}}" ng-model="item.score" value="2" required> 
       </td> 
       <td ng-if="voteData.ballot_type =='记分'"> 
        <input type="radio" name="{{item}}" ng-model="item.score" value="1" required> 
       </td> 

       <td ng-if="voteData.ballot_type =='表决'"> 
        <input type="radio" name="{{item}}" ng-model="item.score" value="1" required> 
       </td> 
       <td ng-if="voteData.ballot_type =='表决'"> 
        <input type="radio" name="{{item}}" ng-model="item.score" value="0" required> 
       </td> 

      </tr> 
      </tbody> 
     </table> 
    </div> 
    <button type="submit" class="btn btn-success btn-lg center-block">提交</button> 
</form> 
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> 
<script src="js/vote.js"></script> 
</body> 
</html> 

这工作得很好,而不只@media ...在桌面上,但它并没有在移动设备上运行。

+2

我们需要更多的代码。请提供一个工作片段。 –

+0

html文件只包含一个头文件和一个表格。我只是忽略了表 –

+0

@XINDILI的细节和CSS?我们需要能够重现您的问题... – Shiva127

回答

0

现在可能是有用的你!..

@media only screen and (max-width: 500px) { 
 
    .table-bordered{ 
 
     margin-left:20px !important; 
 
    } 
 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" rel="stylesheet"/> 
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<div class="table-responsive"> 
 
     <table class="table table-striped table-bordered"> 
 
      <thead> 
 
      <tr> 
 
       <th rowspan="2">提名书号</th> 
 
       <th rowspan="2">姓名</th> 
 
       <th rowspan="2">年龄</th> 
 
       <th rowspan="2">学科专业</th> 
 
       <th rowspan="2">工作单位</th> 
 
       <th colspan="3" ng-if="voteData.ballot_type =='记分'">圈选栏</th> 
 
       <th colspan="2" ng-if="voteData.ballot_type =='表决'">圈选栏</th> 
 
      </tr> 
 
      <tr> 
 
       <th ng-if="voteData.ballot_type =='记分'">A</th> 
 
       <th ng-if="voteData.ballot_type =='记分'">B</th> 
 
       <th ng-if="voteData.ballot_type =='记分'">C</th> 
 

 
       <th ng-if="voteData.ballot_type =='表决'"><i class="glyphicon glyphicon-ok"></i></th> 
 
       <th ng-if="voteData.ballot_type =='表决'"><i class="glyphicon glyphicon-remove"></i></th> 
 
      </tr> 
 
      </thead> 
 
      <tbody> 
 
      <tr ng-repeat="item in voteData.candidates"> 
 
       <td>1</td> 
 
       <td>2</td> 
 
       <td>3</td> 
 
       <td>4</td> 
 
       <td>5</td> 
 

 
       <td ng-if="voteData.ballot_type =='记分'"> 
 
        <input type="radio" name="{{item}}" ng-model="item.score" value="3" required> 
 
       </td> 
 
       <td ng-if="voteData.ballot_type =='记分'"> 
 
        <input type="radio" name="{{item}}" ng-model="item.score" value="2" required> 
 
       </td> 
 
       <td ng-if="voteData.ballot_type =='记分'"> 
 
        <input type="radio" name="{{item}}" ng-model="item.score" value="1" required> 
 
       </td> 
 

 
       <td ng-if="voteData.ballot_type =='表决'"> 
 
        <input type="radio" name="{{item}}" ng-model="item.score" value="1" required> 
 
       </td> 
 
       <td ng-if="voteData.ballot_type =='表决'"> 
 
        <input type="radio" name="{{item}}" ng-model="item.score" value="0" required> 
 
       </td> 
 

 
      </tr> 
 
      </tbody> 
 
     </table> 
 
    </div>

+0

它不起作用.... –

+0

尝试'!重要的'或共享您的代码,使其更好用。 – HirenMangukiya

+0

我发布了我所有的代码。请看我更新的问题。 –

0
<style> 
    @media only screen and (max-width: 600px) { 
     .table-responsive .table-striped{ 
      width: 100% !important; 
      max-width: 95% !important; 
      margin: 10px auto !important; 
      } 
     .table-responsive 
     { 
     width: 100% !important; 
     max-width: 95% !important; 
     margin: 10px auto !important; 
     } 
    } 
</style> 
+0

它不起作用.... –

+0

有一些冲突,确定然后尝试填充右:10px!重要; –

+0

它仍然我发布了我的所有代码,请参阅我的更新后的问题 –