找到关于 CSS 的 1575 篇文章
89 次浏览
要设置元素以保留由最后一个关键帧设置的样式值,请将 `animation-fill-mode` 属性与 `backwards` 值一起使用。示例在线演示 `div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; animation-fill-mode: backwards; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} }
777 次浏览
要设置底部工具提示,请使用 `top` CSS 属性。您可以尝试运行以下代码来为文本设置底部工具提示:示例在线演示 `.mytooltip .mytext { visibility: hidden; width: 140px; background-color: orange; color: white; z-index: 1; top: 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:hover .mytext { visibility: visible; } 将鼠标悬停在我上面 我的工具提示文本
116 次浏览
要设置左侧工具提示,请使用 `right` CSS 属性。您可以尝试运行以下代码来将左侧工具提示设置为文本:示例在线演示 .mytooltip .mytext { visibility: hidden; width: 140px; background-color: orange; color: white; z-index: 1; top: -6px; right: 100%; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; } .mytooltip { position: relative; display: inline-block; margin-left: 150px; } .mytooltip:hover .mytext { visibility: visible; } 将鼠标悬停于此 我的工具提示文本
468 次浏览
要使用 CSS 创建响应式图片库,您可以尝试运行以下代码示例在线演示 div.myGallery { border: 2px solid orange; } div.myGallery:hover { border: 1px solid blue; } div.myGallery img { width: 100%; height: auto; } div.desc { padding: 20px; text-align: center; } .responsive { padding: 0 5px; float: left; width: 24.99999%; } @media only screen and (max-width: 700px) { .responsive { width: 49.99999%; margin: 5px 0; } } @media only screen and (max-width: 500px) { .responsive { width: 100%; } } .clearfix:after { content: ""; display: table; clear: both; } 3D动画教程> Swift视频教程 CSS 教程