У меня есть проект, чтобы показать список в таблице, поэтому я использовал для этого таблицы данных.Я разработал его на большом большем экране, но когда я открываю его на ноутбуке с меньшим экраном, ширина TH и TD не совпадают.Но это происходит на экране ноутбука, когда я открываю его на большом экране, он выглядит хорошо.
Это картинка,
И это мой код user_list.php,
<!doctype html>
<html>
<head>
<title>E-Arsip</title>
<link rel="stylesheet" href="<?php echo base_url('assets/bootstrap/css/bootstrap.min.css') ?>"/>
<link rel="stylesheet" href="<?php echo base_url('assets/datatables/dataTables.bootstrap.css') ?>"/>
<link rel="stylesheet" href="<?php echo base_url('assets/datatables/dataTables.bootstrap.css') ?>"/>
<link href="<?php echo base_url('assets/template/css/bootstrap.min.css') ?>" rel="stylesheet">
<link href="<?php echo base_url('assets/template/css/styles.css');?>" rel="stylesheet">
<link href="<?php echo base_url('assets/template/css/font-awesome.min.css'); ?>" rel="stylesheet">
<!--<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/mycss.css')?>">-->
<style>
.dataTables_wrapper {
min-height: 100px
}
.dataTables_processing {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
margin-left: -50%;
margin-top: -25px;
padding-top: 20px;
text-align: center;
font-size: 1.2em;
color:grey;
}
/*body{
padding: 15px;
}*/
.dt-head-center{
text-align: center;
}
.table th{
text-align: center;
min-height: 300px;
}
.dataTables tbody th {
min-height: 300px; /* or whatever height you need to make them all consistent */
}
</style>
</head>
<body>
<?php
$_user =& get_instance();
$user['param1'] = "User Account";
$user['params'] = "User Account";
$user['jabatan'] = "admin";
$this->load->view('template/navbar',$user) ;
$this->load->view('template/sidebarMenu',$user) ;
?>
<div class="col-sm-12">
<div class="panel panel-primary ">
<div class="panel-heading clearfix">
<div class="panelTitle" style="float:left;"><small><span class="fa fa-address-card-o" style="font-size:1.5em;"></span></small> Akun User</div>
</div>
<div class="panel-body">
<div class="row" style="margin-bottom: 10px">
<div class="col-sm-4">
</div>
<!-- <div class="col-md-4 text-center">
<div style="margin-top: 4px" id="message">
<?php echo $this->session->userdata('message') <> '' ? $this->session->userdata('message') : ''; ?>
</div>
</div> -->
</div>
<div class="col-sm-12">
<a href="<?php echo site_url('admin/create_user')?>" data-toggle="tooltip" title="Baca Arsip">
<button class="btn btn-primary " ><i class="glyphicon glyphicon-plus"></i> Tambah User</button>
</a>
<br><br>
<table class="table table-bordered table-striped" id="mytable">
<thead>
<tr>
<th width="40px" style="height: 20px;"><span style="width: inherit; display: block;">No</th>
<th style="height: 20px;"><span style="width: inherit; display: block;">Level</th>
<th style="height: 20px;"><span style="width: inherit; display: block;">Username</th>
<th width="90px" style="height: 20px;"><span style="width: inherit; display: block;">Action</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script src="<?php echo base_url('assets/js/jquery-1.11.2.min.js') ?>"></script>
<script src="<?php echo base_url('assets/datatables/jquery.dataTables.js') ?>"></script>
<script src="<?php echo base_url('assets/datatables/dataTables.bootstrap.js') ?>"></script>
<script src="<?php echo base_url('assets/template/js/custom.js') ?>"></script>
<script src="<?php echo base_url('assets/template/js/bootstrap.min.js') ?>"></script>
<script type="text/javascript">
$(document).ready(function() {
$.fn.dataTableExt.oApi.fnPagingInfo = function(oSettings)
{
return {
"iStart": oSettings._iDisplayStart,
"iEnd": oSettings.fnDisplayEnd(),
"iLength": oSettings._iDisplayLength,
"iTotal": oSettings.fnRecordsTotal(),
"iFilteredTotal": oSettings.fnRecordsDisplay(),
"iPage": Math.ceil(oSettings._iDisplayStart / oSettings._iDisplayLength),
"iTotalPages": Math.ceil(oSettings.fnRecordsDisplay() / oSettings._iDisplayLength)
};
};
var t = $("#mytable").dataTable({
scrollX: true,
scrollCollapse: true,
initComplete: function() {
var api = this.api();
$('#mytable_filter input')
.off('.DT')
.on('keyup.DT', function(e) {
if (e.keyCode == 13) {
api.search(this.value).draw();
}
});
},
oLanguage: {
sProcessing: "loading..."
},
processing: true,
serverSide: true,
ajax: {"url": "json", "type": "POST"},
columns: [
{
"data": "id_user",
"orderable": false
},{"data": "level"},{"data": "username"},
{
"data" : "action",
"orderable": false,
"className" : "text-center"
}
],
order: [[0, 'desc']],
rowCallback: function(row, data, iDisplayIndex) {
var info = this.fnPagingInfo();
var page = info.iPage;
var length = info.iLength;
var index = page * length + (iDisplayIndex + 1);
$('td:eq(0)', row).html(index);
}
});
});
$(document).ready(function () {
$('.dataTables_filter input[type="search"]').
attr('placeholder','Cari').
css({'height':'35px','display':'inline-block'});
});
</script>
</body>
</html>
Я пытался изменить ширину, но ничего не произошло, что не так с моим кодом?Любая помощь будет оценена!