div+css实现圆形div以及带箭头提示框效果
时间: 2023-09-30 15:09:44 浏览: 94
要实现圆形 div 可以使用 CSS 的 border-radius 属性,将其设置为 50% 即可。例如:
```css
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: red;
}
```
要实现带箭头的提示框效果,可以使用 CSS 的伪元素和绝对定位来实现。例如:
```html
<div class="tooltip">Hover me
<span class="tooltiptext">This is a tooltip</span>
</div>
```
```css
.tooltip {
position: relative;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
```
这里使用了 `::after` 伪元素来实现箭头,通过设置边框颜色来实现三角形的效果。同时,通过设置父元素的 `position: relative` 和子元素的 `position: absolute` 来实现子元素相对于父元素的定位。
阅读全文