合同html样式,css 合同打印print--水印
时间: 2023-12-21 10:06:59 浏览: 166
好的,你的问题是关于合同的HTML样式、CSS和打印水印的问题。
首先,对于HTML样式和CSS,我们可以使用一些常见的样式来美化合同的外观。比如,我们可以使用一些CSS属性来设置合同的字体、颜色、行距、边框等等。以下是一个简单的例子:
```html
<!DOCTYPE html>
<html>
<head>
<title>合同样式</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #333;
}
h1, h2 {
font-weight: bold;
}
p {
margin-bottom: 10px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
text-align: center;
}
.watermark {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.5;
font-size: 60px;
font-weight: bold;
color: #ccc;
z-index: -1;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
</head>
<body>
<h1>合同标题</h1>
<p>甲方:</p>
<p>乙方:</p>
<table>
<tr>
<th>日期</th>
<th>内容</th>
</tr>
<tr>
<td>2021-01-01</td>
<td>合同签订</td>
</tr>
<tr>
<td>2021-01-02</td>
<td>付款</td>
</tr>
</table>
<div class="watermark">水印</div>
</body>
</html>
```
在上面的代码中,我们定义了一些基本的样式,比如设置了字体、颜色、行距等等。同时,我们还使用了一个表格来展示合同的内容,并设置了表格的样式。最后,我们还添加了一个水印,使用了CSS的position、transform等属性来实现。
对于打印水印,我们可以使用CSS的@media print属性来设置打印样式。以下是一个简单的例子:
```html
<!DOCTYPE html>
<html>
<head>
<title>合同样式</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #333;
}
h1, h2 {
font-weight: bold;
}
p {
margin-bottom: 10px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
text-align: center;
}
.watermark {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.5;
font-size: 60px;
font-weight: bold;
color: #ccc;
z-index: -1;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
@media print {
.watermark {
display: none;
}
body {
background-image: url('watermark.png');
background-repeat: repeat;
}
}
</style>
</head>
<body>
<h1>合同标题</h1>
<p>甲方:</p>
<p>乙方:</p>
<table>
<tr>
<th>日期</th>
<th>内容</th>
</tr>
<tr>
<td>2021-01-01</td>
<td>合同签订</td>
</tr>
<tr>
<td>2021-01-02</td>
<td>付款</td>
</tr>
</table>
<div class="watermark">水印</div>
</body>
</html>
```
在上面的代码中,我们添加了一个@media print属性,用来设置打印样式。在打印时,我们隐藏了水印,并设置了背景图片来展示水印。
以上是一个简单的例子,你可以根据实际需求来进行样式和水印的设置。
阅读全文