作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 matTooltip 上添加箭头,有任何方法可以在 matTooltip 上添加箭头。
<button mat-raised-button
matTooltip="Info about the action"
aria-label="Button that displays a tooltip when focused or hovered over">
Action
</button>
最佳答案
您需要覆盖 Material 样式。并在伪元素之前/之后添加为箭头。例如,如果您需要为带有左边框和箭头的工具提示设置样式,只需执行类似的操作
.mat-tooltip {
// to make possible place arrow pseudo element outside tooltip with absolute positioning
overflow: visible;
position: relative;
&.right {
border-left: 6px solid red;
margin-left: 5px;
&::before {
position: absolute;
content: '';
display: inline-block;
background-color: red;
clip-path: polygon(50% 0, 0 50%, 50% 100%);
left: -12px;
width: 15px;
height: 15px;
top: 50%;
transform: translateY(-50%);
}
}
}
关于javascript - 如何在 matTooltip 中添加箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51807855/
我是一名优秀的程序员,十分优秀!