Project

General

Profile

1
<!DOCTYPE html>
2
<html>
3
<head>
4
	<meta charset="utf-8">
5
	<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
6
	<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
7
	<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
8
	<link rel="stylesheet" type="text/css" href="../resources/demo.css">
9
	<script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script>
10
	<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"></script>
11
	<script type="text/javascript" language="javascript" src="../resources/demo.js"></script>
12

    
13
	<title>DataTables examples - Styling</title>
14
</head>
15

    
16
<body class="dt-example">
17
	<div class="container">
18
		<section>
19
			<h1>DataTables example <span>Styling</span></h1>
20

    
21
			<div class="info">
22
				<p>When using DataTables, you want your tables to fit in with your site / app to make the end user
23
				experience as seamless as possible. For this reason, DataTables provides an easy to customise core
24
				stylesheet, which has a number of features that you can enable or disable as you required. Additionally
25
				there are a number of integration packages which can be used to fit DataTables into a site which uses
26
				some of the popular CSS libraries such as Twitter Bootstrap and Foundation. Or of course you can craft
27
				your own CSS to fit it into your site perfectly!</p>
28

    
29
				<p>This section includes examples of how DataTables can be styled using these methods.</p>
30
			</div>
31
		</section>
32
	</div>
33

    
34
	<section>
35
		<div class="footer">
36
			<div class="gradient"></div>
37

    
38
			<div class="liner">
39
				<div class="toc">
40
					<div class="toc-group">
41
						<h3><a href="./index.html">Styling</a></h3>
42
						<ul class="toc">
43
							<li><a href="./display.html">Base style</a></li>
44
							<li><a href="./no-classes.html">Base style - no styling classes</a></li>
45
							<li><a href="./row-border.html">Base style - row borders</a></li>
46
							<li><a href="./cell-border.html">Base style - cell borders</a></li>
47
							<li><a href="./hover.html">Base style - hover</a></li>
48
							<li><a href="./order-column.html">Base style - order-column</a></li>
49
							<li><a href="./stripe.html">Base style - stripe</a></li>
50
							<li><a href="./jqueryUI.html">jQuery UI ThemeRoller</a></li>
51
							<li><a href="./bootstrap.html">Bootstrap</a></li>
52
							<li><a href="./foundation.html">Foundation</a></li>
53
						</ul>
54
					</div>
55
				</div>
56

    
57
				<div class="epilogue">
58
					<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full
59
					information about its API properties and methods.<br>
60
					Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and
61
					<a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of
62
					DataTables.</p>
63

    
64
					<p class="copyright">DataTables designed and created by <a href=
65
					"http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br>
66
					DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
67
				</div>
68
			</div>
69
		</div>
70
	</section>
71
</body>
72
</html>
(6-6/11)