本文概述
- CSS上箭头
- CSS底部箭头
- CSS左箭头
- CSS右箭头
- 上箭头
- 底部箭头
- 左箭头
- 右箭头
请参阅以下示例:
<
!DOCTYPE html>
<
html>
<
style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 150%;
left: 50%;
margin-left: -60px;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent black transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
<
/style>
<
body style="text-align:center;
">
<
h2>
Top Arrow Example<
/h2>
<
p>
Move your mouse cursor over the below heading<
/p>
<
div class="tooltip">
<
strong>
Welcom to srcmini<
/strong>
<
span class="tooltiptext">
A solution of all technology<
/span>
<
/div>
<
/body>
<
/html>
CSS底部箭头当你将鼠标光标移到元素上方时, 底部箭头用于在工具提示的底部添加类似箭头的结构。它将在元素顶部显示工具提示。
【CSS箭头用法】请参阅以下示例:
<
!DOCTYPE html>
<
html>
<
style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 150%;
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;
}
<
/style>
<
body style="text-align:center;
">
<
h2>
Bottom Arrow Example<
/h2>
<
p>
Move your mouse cursor over the below heading<
/p>
<
div class="tooltip">
<
strong>
Welcom to srcmini<
/strong>
<
span class="tooltiptext">
A solution of all technology<
/span>
<
/div>
<
/body>
<
/html>
CSS左箭头当你将鼠标光标移到元素上时, 左箭头用于在工具提示的左侧添加类似箭头的结构。它将在元素右侧显示工具提示。
请参阅以下示例:
<
!DOCTYPE html>
<
html>
<
style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: -5px;
left: 110%;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 50%;
right: 100%;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent black transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
<
/style>
<
body style="text-align:center;
">
<
h2>
Left Arrow Example<
/h2>
<
p>
Move your mouse cursor over the below heading<
/p>
<
div class="tooltip">
<
strong>
Welcom to srcmini<
/strong>
<
span class="tooltiptext">
A solution of all technology<
/span>
<
/div>
<
/body>
<
/html>
CSS右箭头当你将鼠标光标移到元素上时, 右箭头用于在工具提示的右侧添加类似箭头的结构。它将在元素的左侧显示工具提示。
请参阅以下示例:
<
!DOCTYPE html>
<
html>
<
style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: -5px;
right: 110%;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 50%;
left: 100%;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent transparent black;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
<
/style>
<
body style="text-align:center;
">
<
h2>
Right Arrow Example<
/h2>
<
p>
Move your mouse cursor over the below heading<
/p>
<
div class="tooltip">
<
strong>
Welcom to srcmini<
/strong>
<
span class="tooltiptext">
A solution of all technology<
/span>
<
/div>
<
/body>
<
/html>
推荐阅读
- CSS Flexbox使用详解
- CSS工具提示动画/淡入工具提示
- CSS工具提示tooltip
- CSS过渡transition
- CSS渐变gradient
- CSS动画animation
- CSS计数器counter
- CSS可见性visibility
- CSS轮廓outline