找到关于 CSS 的 1575 篇文章

使用 CSS 设置带边框的表单输入框

Chandu yadav
更新于 2020-06-23 15:27:59

77 次浏览

要为表单输入框设置边框,请使用 CSS 的 `border` 属性。您可以尝试运行以下代码添加边框 示例在线演示                    `input[type = text] {             width: 100%;             padding: 10px 15px;             margin: 5px 0;             box-sizing: border-box;             border: 3px inset orange;          }                     请填写以下表单,                主题                    学生                    

使用 CSS 样式化表单的输入字段

Smita Kapse
更新于 2020-06-23 15:25:45

282 次浏览

要样式化表单的输入字段,您可以尝试运行以下代码。样式化:示例在线演示                    `input {             width: 100%;          }                     请填写以下表单,                主题                    学生                    

使用 CSS 在表单文本字段内添加空格

Prabhas
更新于 2020-06-23 15:26:31

9K+ 次浏览

要在表单文本字段内添加空格,请使用 CSS 的 `padding` 属性。您可以尝试运行以下代码来实现此目的:示例在线演示                    `input[type = text] {             width: 100%;             padding: 10px 15px;             margin: 5px 0;             box-sizing: border-box;          }                     请填写以下表单,                主题                    学生                    

使用 CSS 选择所有具有 rel=”nofollow” 属性的元素

usharani
更新于 2020-06-23 15:25:05

239 次浏览

使用 `[attribute = ”value”]` 选择器来选择具有指定属性和值的元素。您可以尝试运行以下代码来实现 CSS `[attribute="value"]` 选择器。在这里,我们将属性视为 rel,示例在线演示                    `a[rel = nofollow] {             border: 3px solid blue;          }                     Uber 的商业模式       分享          市场    

使用 CSS 设置元素以保留由第一个关键帧设置的样式值

Ankith Reddy
更新于 2020-06-23 15:23:03

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;}          }                        

使用 CSS 设置底部工具提示

seetha
更新于 2020-06-23 15:21:49

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;       }               将鼠标悬停在我上面           我的工具提示文本          

使用 CSS 选择以指定值开头的指定属性的元素

Nitya Raut
更新于 2020-06-23 15:20:41

102 次浏览

使用 `[attribute|=”value”]` 选择器来选择以指定值开头的指定属性的元素。您可以尝试运行以下代码来实现 CSS `[attribute|=”value”]` 选择器,示例在线演示                    `[alt |= Tutor] {             border: 5px solid orange;             border-radius: 5px;          }                              

CSS `[attribute]` 选择器的用法

mkotla
更新于 2020-06-23 15:03:03

228 次浏览

使用 `[attribute]` 选择器来选择具有属性的元素,例如 `alt` 属性或 `target` 属性等。您可以尝试运行以下代码来实现 CSS `[attribute]` 选择器,示例在线演示                    `img[alt] {             border: 3px solid orange;          }                              

使用 CSS 设置左侧工具提示

Jennifer Nicholas
更新于 2020-06-23 15:00:44

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;       }               将鼠标悬停于此           我的工具提示文本          

如何使用 CSS 创建响应式图片库

Arjun Thakur
更新于 2020年6月23日 15:10:00

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 教程                          

广告