【图形】CSS绘制提示框 #talkbubble { width: 120px; height: 46px; background: red; position: relative; border : 5px solid red; border-radius : 5px; margin: 30px 0 0 200px; color: #fff; display: flex; justify-content: center; align-items: center; } #talkbubble:before { content:""; position: absolute; right: 100%; top: 24px; width: 0; height: 0; border-top: 16px solid transparent; border-right: 100px solid red; transform:rotate(-10deg); }
【图形】CSS绘制提示框