如何使用html和css创建这样的div?
___________________
< |
| |
| |
____________________
答案 0 :(得分:0)
您可以使用div
或任何其他元素作为文本框。然后使用:before
类,结合透明边框(三面),您可以创建一个箭头。
可以找到更多信息here
div {
position: relative;
background: lightblue;
width: 200px;
height: 100px;
}
div:before {
position: absolute;
right: 100%;
top: 10px;
content: " ";
height: 0;
width: 0;
border: 10px solid lightblue;
border-color: transparent lightblue transparent transparent;
}
&#13;
<div>Textbox with arrow</div>
&#13;
答案 1 :(得分:0)