找到关于 CSS 的1575 篇文章
3K+ 次浏览
使用 CSS,你可以使用 `:after` 添加一个小的箭头到工具提示中。同时,使用 `content` 属性。你可以尝试运行以下代码在工具提示中添加一个箭头:示例在线演示 `.mytooltip .mytext { visibility: hidden; width: 140px; background-color: blue; color: #fff; z-index: 1; bottom: 100%; left: 60%; margin-left: -90px; text-align: center; ... 阅读更多
212 次浏览
要将导航栏设置在顶部,请使用 `position: fixed` 属性和 `top` 属性。你可以尝试运行以下代码来实现一个停留在顶部的菜单,示例在线演示 `ul { list-style-type: none; position: fixed; top: 0; width: 100%; } li { float: left; ... 阅读更多
728 次浏览
使用 `top` CSS 属性将箭头添加到工具提示的底部。示例你可以尝试运行以下代码来添加一个底部带箭头的工具提示:在线演示 `.mytooltip .mytext { visibility: hidden; width: 140px; background-color: blue; color: #fff; z-index: 1; bottom: 100%; left: 60%; margin-left: -90px; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; } .mytooltip { position: relative; display: inline-block; margin-top: 50px; } .mytooltip .mytext:after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -10px; border-width: 7px; border-style: solid; border-color: blue transparent transparent transparent; } .mytooltip:hover .mytext { visibility: visible; } 将鼠标悬停在此处 我的工具提示文本