mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* migrate chrome.printing api sample from v2 to v3 manifest * Restore MV2 printing sample. --------- Co-authored-by: Oliver Dunk <oliverdunk@google.com>
19 lines
305 B
CSS
19 lines
305 B
CSS
/**
|
|
* Copyright 2020 The Chromium Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
table, th, td, tr {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
div {
|
|
overflow: auto;
|
|
}
|