<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.inner {
padding: 5px;
border: 15px solid red;
border-top: 0;
}
.outer {
border-top: 15px solid teal;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">test</div>
</div>
</body>
</html>