JSFiddle - React, Tailwind, and code Playground

by Ying Chor Ding

HTML

<div class="left">Welcome to The NutryFarm International Limited. investor relations webpage, which we are committed to provide timely and transparent disclosures to the investment community.</div>
<div class="arrow-right"></div>
<div class="right">Right Div</div>
<div class="arrow-left"></div>

CSS

.left, .right, .arrow-right, .arrow-left {
    display:inline-block;
}

.left {
    background-color: #b6b6b6;
    line-height: 32px;
    margin: 0;
    padding-right: 0;
    padding-top: 8px;
    vertical-align: top;
    padding-left:10px;
}

.right {
    background-color: rgba(0, 0, 0, 0.2);
    line-height: 36px;
    margin-left: -24px;
    padding-left: 35px;
    padding-right: 5px;
    padding-top: 4px;
    vertical-align: top;
}

.arrow-right {
	width: 0; 
	height: 0; 
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	margin-left:-4px;
	border-left: 20px solid #e4e4e4;
}
.arrow-left {
	width: 0; 
	height: 0; 
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	margin-left:-4px;
	border-left: 20px solid #b6b6b6;
}