My code is:
p { position: relative; background-color: blue; } p:before { content: \'\'; position: absolute; left:100%; width: 10px;
No,but you can do like this
In html file add this section
In css you can do like this
p div.arrow { content: ''; position: absolute; left:100%; width: 10px; height: 100%; background-color: red; }
Hope it will help you