AdminLTE에서 동일한 문제가 발생했습니다. 나는 .container-fluid { overflow-x: scroll; }
으로 'container-fluid'클래스의 CSS를 오버라이드하여 해결했습니다. 다음은 일반적인 예입니다.
<html>
<head>
<style>
.container-fluid {
overflow-x: scroll;
}
</style>
</head>
<body class="skin-black sidebar-mini" role="document">
<div class="wrapper">
<!-- AdminLTE Main Header here -->
<!-- AdminLTE Sidebar here -->
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header">
<h1>View Employees Header Page</h1>
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Employees</li>
</ol>
</section>
<section class="content container-fluid">
<!-- Employees table view with horizontal scrollbar -->
</section>
</div>
<!-- /.content-wrapper -->
<!-- AdminLTE Footer here -->
</div>
</body>
</html>