- ?
#triangle-topleft {
position: relative;
width: 0;
height: 0;
border-top: 300px solid blue;
border-right: 100px solid transparent;
}
#triangle-topleft::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-top: 300px solid red;
border-right: 100px solid transparent;
transform: translate(5px, -100%);
z-index: -1;
}
#triangle-topleft::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 5px;
height: 15px;
background-color: red;
z-index: -1;
}
, , 2 - - ::before ::after, , .
: http://jsbin.com/fezutuhulo/edit?html,css,output