mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
48 lines
936 B
HTML
48 lines
936 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Borders tests</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<script type="text/javascript" src="../../test.js"></script>
|
|
<style type="text/css">
|
|
div {
|
|
width: 200px;
|
|
height: 200px;
|
|
display: inline-block;
|
|
margin: 10px;
|
|
background:#6F428C;
|
|
border-style: dashed;
|
|
}
|
|
|
|
.box1 {
|
|
border-width: 1px;
|
|
border-color: #00b5e2;
|
|
}
|
|
|
|
.box2 {
|
|
border-width: 3px;
|
|
border-color: red;
|
|
}
|
|
|
|
.box3 {
|
|
border-width: 10px;
|
|
}
|
|
|
|
.box4 {
|
|
border-width: 50px;
|
|
border-color: green;
|
|
}
|
|
|
|
html {
|
|
background: #3a84c3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box1"> </div>
|
|
<div class="box2"> </div>
|
|
<div class="box3"> </div>
|
|
<div class="box4"> </div>
|
|
</body>
|
|
</html>
|