Partial fix for borders

This commit is contained in:
MoyuScript
2014-11-04 21:40:09 +02:00
parent 7d1f33d6b7
commit 95d76a365d
4 changed files with 18 additions and 6 deletions

View File

@ -46,15 +46,28 @@
background-clip: padding-box;
}
.box5 {
margin: 100px;
border-width: 50px;
border-left-color: transparent;
border-top-color: red;
border-top-width: 10px;
border-right-color: green;
border-radius: 25px;
background-clip: padding-box;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
<div class="box5">&nbsp;</div>
</body>
</html>