DmitrMakeev commited on
Commit
21c83f2
·
verified ·
1 Parent(s): d9e9c09

Update table.html

Browse files
Files changed (1) hide show
  1. table.html +30 -0
table.html CHANGED
@@ -9,6 +9,36 @@
9
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
10
  <link href="https://unpkg.com/[email protected]/dist/css/tabulator.min.css" rel="stylesheet">
11
  <script src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </head>
13
  <body>
14
 
 
9
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
10
  <link href="https://unpkg.com/[email protected]/dist/css/tabulator.min.css" rel="stylesheet">
11
  <script src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script>
12
+
13
+ <style>
14
+ body {
15
+ display: flex;
16
+ flex-direction: column;
17
+ align-items: center;
18
+ margin: 0;
19
+ padding: 0;
20
+ }
21
+ .container {
22
+ width: 100%;
23
+ max-width: 100%;
24
+ }
25
+ /* Шапка */
26
+ .header {
27
+ width: 100%;
28
+ padding: 0px 0; /* Убраны отступы справа и слева */
29
+ display: flex;
30
+ justify-content: space-between;
31
+ align-items: center;
32
+ background-color: #f8f9fa;
33
+ border-bottom: 1px solid #ddd;
34
+ }
35
+ /* Кнопки и лейбл в шапке */
36
+ .header .buttons,
37
+ .header .label {
38
+ margin: 0; /* Полностью убраны отступы */
39
+ }
40
+
41
+ </style>
42
  </head>
43
  <body>
44