【前端见外】6个你应该知道的实用CSS小技巧

CSS技巧.png

原文作者:Mehdi Aoussiad

翻译:尴尬风流

原文链接:6 Useful Pure CSS Tips that You Should Know

个人翻译,转载请注明出处,文章中有什么问题欢迎大家在评论中指出

CSS is a great stylesheet language that allows you to style web pages and make them responsive. It’s a must-know for all web developers because every website or web application uses CSS.

CSS是一种很棒的样式表语言,我们可以使用它来改变网站样式,或是制作响应式的网站。它是所有Web开发人员必须掌握的技能,因为每个网站或Web应用程序都会使用CSS。

Nowadays, CSS has improved a lot. You can create some awesome stuff with it without using JavaScript. That’s why you need to know some CSS tips that will allow you to make amazing UI in your projects.

如今的CSS语言已经有了许多改进。你可以在不使用JavaScript的情况下用纯CSS创建一些很酷的东西。这就是为什么你需要了解一些CSS技巧,他们能让你在项目中制作出非常惊艳的UI。

In this article, we will show you some useful CSS tips that you can use on your next projects. So let’s get right into it.

在这篇文章中,我们将会展示一些实用的CSS技巧,你可以在接下来的项目中尝试使用他们。那么让我们直接开始吧。

1. 给滚动条增加样式

With CSS, you can easily style the default scrollbar on your website. So you can make it look awesome as you wanted it.

使用CSS,你可以轻松地在你的网站上修改滚动条的样式。这样你可以实现自己想要的任何效果。

To achieve that, you will need to use the properties ::scrollbarand ::scrollbar-thumbas we did in the code example below:

要实现这一点,你需要使用属性 ::scrollbar::scrollbar-thumb,下面是一段代码示例。

body{
  height: 200vh;
}
::-webkit-scrollbar{
  width: 17px;
}
::-webkit-scrollbar-thumb{
  background: black;
}

As you can see, we added -webkit-for the browser support in Chrome and Safari. We also added our styles to make the scrollbar’s width bigger in black color.

通过代码你可以看到,我们添加了-webkit-前缀,因为这是Chrome和Safari浏览器的内核webkit支持的CSS扩展。我们还添加了我们的样式,使滚动条的宽度变大,并变成黑色。

你可以点击这个链接查看效果

2. 给鼠标选中文本增加样式

When we check a website or read a blog, we often select the text with our mouse. But the good thing is that you can change the selection styles in CSS.

我们在浏览网站或阅读博客时,经常会用鼠标选择某段文字。你可以通过CSS来改变被鼠标选中文本的样式。

The property ::selectionallows you to easily change the styles of the selected text.

::selection 属性可以让你轻松改变被鼠标选中文本的样式。

Here is the code example:

下面是代码示例:

::selection{
  background: yellow;
  color: black;
}

After adding the above stylesheet, the text will have a yellow background and a black color when you select it with your mouse.

添加上述样式表后,用鼠标选择文字时,文字的背景会变成黄色,文字颜色会变成黑色。

你可以点击这个链接查看效果

3. 实现平滑的滚动

You can use the CSS property scroll-behaviorusing htmlas a selector in order to enable smooth scrolling on the whole HTML page.

你可以在 html 选择器中添加CSS属性 scroll-behavior,这样整个HTML页面就会有平滑的滚动。

Here is an example:

下面是代码示例:

html{
 scroll-behavior: smooth;
}

你可以点击这个链接查看效果

4. 纯CSS实现深色模式

Do you know that you can easily add dark mode to your site without using JavaScript? I see some developers use CSS variables to create dark mode. But there is another cool tip that allows you to achieve the same thing without CSS variables.

你知道吗?不必使用JavaScript就可以轻松地为你的网站添加深色模式吗?我发现一些开发人员使用CSS变量来实现黑暗模式。但还有另一个很酷的技巧,可以让你在不使用CSS变量的情况下实现同样的效果。

So we can use the pseudo-element ::checkedon an input of type checkboxto easily toggle between dark and light mode whenever the checkbox is clicked.

我们将在一个类型为复选框的输入元素上使用伪元素::checked,以便在复选框被点击时轻松地在深色模式和浅色模式之间切换。

Have a look at a simple HTML and CSS code below:

请看下面这段简单的HTML和CSS代码。

HTML代码:

<body>
    <input type="checkbox" id="checkbox">
    <div class="container">
      <h1>Hello World!</h1>
      <div class="div1">
        <p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Doloribus, pariatur?</p>
      </div>
    </div>
</body>

CSS代码:

body{
    height: 100vh;
}

.container{
    width: 100%;
    height: 100%;
    padding: 80px 20px;
    transition: .4s ease;
}

/* When the checkbox is clicked */
#checkbox:checked + .container{
  background: black;
  color: white;
}

你可以点击这个链接查看效果

If you want to know more details about dark mode using ::checkbox, check out my article below:

如果你想知道更多关于使用 ::checkbox 实现深色模式的细节,请看这篇文章

5. 改变输入框中光标的颜色

You can also change the caret color on text inputs using CSS. The property caret-colorallows you to do that.

你也可以使用CSS来改变输入框中光标的颜色。使用 caret-color 这个属性就可以实现。

Here is an example:

下面是代码示例:

input{
  caret-color: red;
}

你可以点击这个链接查看效果

6. 圆锥渐变

Another cool thing about CSS is that you can create beautiful pie charts. The CSS function ionic-gradient allows you to do that.

CSS的另一个很酷的地方是你可以创建漂亮的饼图。你可以使用CSS的 conic-gradient 属性。

下面是一段代码示例:

div{
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(red 0% 20%, blue 20% 60%, black 60% 100%);
}

你可以点击这个链接查看效果

结论

As you can see, there are a lot of cool things that you can do with just pure CSS without using any frameworks or libraries. That’s why CSS is very important, especially for front-end developers.

你可以发现,你可以用纯CSS做很多很酷的事情,而不必使用任何框架或库。这就是对于前端开发者来说,为什么CSS非常的重要。

Thank you for reading this article. I hope you found it useful.

感谢你阅读我的文章,希望我能帮到你。

我建立了一个技术交流群,每天会在群里发技术名词相关的英语小卡片,大家可以加微信「xiedaimala03」备注「程序员英语」进群,交流技术的同时也顺便学点英语,何乐而不为呢!

也欢迎大家关注公众号「前端见外」获取每日英语小卡片。
本文由博客群发一文多发等运营工具平台 OpenWrite 发布

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容