<html>
<head>
<style>
h1 {
border-right-style: outset;
border-right-color: coral;
border-right-width: 7px;
}
div {
border-style: solid;
border-right-style: outset;
border-right-color: coral;
border-right-width: 7px;
}
</style>
</head>
<body>
<h1>A heading with an outset right border</h1>
<div>A div element with an outset right border.</div>
</body>
</html>