作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用以下代码,将 HTML 页面(正文)设置为 A4 大小:
<html>
<head>
<style type="text/css">
@page {
margin: 0;
}
body, html {
margin:0;
padding:0;
}
body {
height: 842px;
width: 595px;
}
section {
clear: both;
}
</style>
</head>
<body>
<section >
<div style="float:left;height:60px">x</div>
<div style="float:right;height:60px">y</div>
</section>
<section>
test
</section>
</body>
</html>
它将删除除右边以外的所有边距。
使用应用于正文的 A4 页面设置打印页面尺寸时如何删除右边距?
最佳答案
您可以为打印机创建一个 css 表:
<link rel="stylesheet" type="text/css" href="printing.css" media="print">
并将所有用于打印的修改都放在那里。
编辑:
或者像这样使用媒体查询:
@media print {
body {
margin:0;
}
}
关于html - 使用固定大小的正文打印时如何删除 HTML 右边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50372598/
我必须为 IE11 编写一些网格回退。 我想将元素 4 放在右下角,以便元素 1 可以一直向下延伸到底部吗? 我认为这对 flexbox 来说是不可能的,对吧? : https://jsfiddle.
您好,我正在尝试让 2 个 div 在左侧与右侧对齐。 #div1 #div2 #div1 #div2 #div3 #div2 #div3 #div3 诀窍是当浏览器窗口变小时,我希望#div2 位于
如何才能点击 EditText 的右侧可绘制对象(查看屏幕截图)?我尝试了几种方法,但总是卡住。 public static Matcher withEditTextDrawable(final in
这个问题在这里已经有了答案: In CSS Flexbox, why are there no "justify-items" and "justify-self" properties? (6
所以我有 10 个复选框,每个标签都取自数组中相应的索引。我正在使用 ng-repeat 来展示它们: {{entity}}
我是一名优秀的程序员,十分优秀!