找到 1575 篇文章 适用于 CSS
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; } 将鼠标悬停在我身上 我的工具提示文本