解锁CSS的功能 - 入门10个技巧!
#css #网络开发人员 #初学者 #tricks

1. Use Flexbox for Responsive Layouts

Flexbox使您可以轻松地开发响应式和灵活的布局,从而轻松将网站更改为不同的屏幕尺寸。

/* This is a CSS snippet for creating a responsive layout using Flexbox. 
   It sets the parent container to have display: flex and flex-wrap: wrap, 
   allowing the child elements to adapt to the size of the screen. */

.container {
    display: flex; /* Sets the container to use Flexbox layout */
    flex-wrap: wrap; /* Allows child elements to wrap onto multiple lines if necessary */
}

/* The child elements are set to have a flex-basis of 100%, 
   ensuring they take up the full width of the container on smaller screens */
.child {
    flex-basis: 100%;
}

/* Media query for screens larger than 768px */
@media (min-width: 768px) {
    /* On larger screens, the child elements are set to have a flex-basis of 50%,
       allowing them to take up half of the container's width */
    .child {
        flex-basis: 50%;
    }
}

这是一个基本示例,您还可以使用flex: 1来使子元素在容器中占用相等的空间,或者使用flex-shrinkflex-grow来控制屏幕尺寸变化时孩子元素的大小调整。

2. Use CSS Grid for Advanced Layouts

css网格可用于创建复杂的布局,行和列可以轻松调整以创建各种不同的布局。

/* This is a CSS Snippet for creating an advanced layout with CSS Grid.  */
.grid-container {
  display: grid; /* Use the grid layout */
  grid-template-columns: repeat(3, 1fr); /* Create 3 equal-width columns */
  grid-template-rows: 100px 200px; /* Create 2 rows with specific heights */
  grid-gap: 10px; /* Add a gap of 10px between the grid items */
}

/* Define grid items */
.grid-item {
  background-color: #eee; /* Add a light gray background color */
  padding: 20px; /* Add some padding to the items */
}

/* Style specific grid items */
.grid-item:nth-child(1) {
  grid-column: 1 / 3; /* Span the first item across the first 3 columns */
  grid-row: 1 / 2; /* Span the first item across the first row */
}

.grid-item:nth-child(2) {
  grid-column: 2 / 4; /* Span the second item across the last 2 columns */
  grid-row: 2 / 3; /* Span the second item across the last row */
}

此CSS代码段使用CSS网格布局来创建一个带有3个相等宽列和2个特定行的网格容器。它还使用网格间隙属性在网格项目之间添加10px差距。

它定义了.grid-item具有浅灰色背景颜色和一些填充物,并使用:nth-child伪级针对特定的网格项目并控制其在网格中的位置。

它显示了我们如何跨越网格项目以覆盖多个行和列,以及如何使用网格模板行和网格 - 板块列来定义网格布局。

3. Utilize CSS Variables

CSS变量变得越来越流行,因为它们允许您将值存储在CSS代码中,然后可以在整个代码中引用该值。这使您无需更改许多代码即可即时更改值。

/* This is a CSS Snippet for declaring a CSS variable */
:root {
  --main-color: #ff0000; /* sets the value of main-color variable to red */
}

/* Use the CSS variable in a CSS rule */
.container {
  background-color: var(--main-color); /* sets the background color of .container to the value of the main-color variable */
}

/* You can also use CSS variables to set property values */
.text {
  color: var(--main-color); /* sets the text color of .text to the value of the main-color variable */
}

css变量是使CSS代码干燥并易于更新样式表的值的非常有用的功能。

通过使用CSS变量,您可以使代码更加可维护,并且还可以轻松更新网站的设计。

变量的使用使您可以在整个样式表中设置一个值并多次引用该值,而不必在多个位置更新相同的值。

4. Take Advantage of CSS Animations

CSS动画使您可以创建平稳的过渡和动画,可以根据需要轻松调整和调整。

/* This is a CSS Snippet for defining the animation */
@keyframes animate {
  /* Start from 0% */
  0% {
    /* Set the initial state of the animation */
    transform: translateY(0);
  }
  /* End at 100% */
  100% {
    /* Set the final state of the animation */
    transform: translateY(-10px);
  }
}

/* Apply the animation to an element */
.example-element {
  /* Set the animation to play for 1 second */
  animation: animate 1s;
}

此CSS代码片段定义了一个名为“ Animate” 的动画,该动画在1秒的过程中将元素移至10像素。动画应用于类“示例元素”

的类元素

@keyframe规则用于定义动画,该动画由一个或多个关键帧组成。在0%(动画的开始)时,转换属性设置为转换(0),这意味着该元素在y轴上的位置将保持不变。在100%(动画的末尾)时,转换属性设置为转换(-10px),这意味着该元素将在y轴上向上移动10像素。

动画属性用于将动画应用于元素,并设置为动画名称(animate),持续时间(1s)和任何其他动画属性,例如正时功能,迭代计数和方向。

5. Use Media Queries to Create Responsive Designs

媒体查询可根据浏览器窗口的大小来调整网站的样式。这是确保您的网站在所有设备上看起来都令人惊叹的绝佳方法。

/* This media query targets screens with a minimum width of 600px */
@media (min-width: 600px) {
  /* Selects the element with the ID "header" and makes its font-size larger */
  #header {
    font-size: 2em;
  }

  /* Selects the class "menu" and changes its display property to "block" */
  .menu {
    display: block;
  }
}

/* This media query targets screens with a maximum width of 600px */
@media (max-width: 600px) {
  /* Selects the element with the ID "header" and makes its font-size smaller */
  #header {
    font-size: 1.5em;
  }

  /* Selects the class "menu" and changes its display property to "none" */
  .menu {
    display: none;
  }
}

此CSS代码演示了如何使用媒体查询来创建响应式设计。媒体查询允许您根据屏幕尺寸更改元素的样式,因此您可以确保您的网站在任何设备上看起来都不错。

在此示例中,介质查询目标屏幕的最小宽度分别为600px和最大宽度为600px。第一个媒体查询使元素的字体大小具有ID “ header” 较大的字体大小,并将类的显示属性更改为“菜单” “ block) 。” 第二个媒体查询相反,使元素的字体大小“ header” 较小,并且隐藏了类 “菜单” 通过将其显示属性设置为“无”。

值得注意的是,使用现代CSS和JavaScript框架,媒体查询不是使网站响应迅速的唯一方法。
一些框架(例如Bootstrap,Foundation,Bulma等)具有预定义的CSS类,可以应用于元素以使其响应迅速,这可以节省开发人员的大量时间,但也限制了设计选项。

6. Utilize CSS Preprocessors

CSS预处理器,例如Sass,Light和Stylus可以帮助您编写更复杂和有组织的CSS代码。

/* This is a CSS snippet, which allows us to use variables, mixins, and other advanced features to make our CSS code more readable and maintainable. */

/* Define a variable for the primary color used throughout the site */
$primary-color: #00ff00;

/* Define a mixin for easily creating responsive text */
@mixin responsive-text {
    font-size: 16px;
    @media (min-width: 768px) {
        font-size: 18px;
    }
    @media (min-width: 992px) {
        font-size: 20px;
    }
}

/* Use the primary color variable and the responsive text mixin */
h1 {
    color: $primary-color;
    @include responsive-text;
}

这是一个简短的CSS代码段,它演示了如何使用CSS预处理器以使CSS代码更可读取和可维护。上面的代码使用变量和混合素来使更改和更新整个网站上使用的主要颜色并分别创建响应式文本。

7. Employ Responsive Typography

使用EMS和REMS之类的相对单元根据浏览器窗口的大小调整字体大小。这可以帮助在所有设备上创建更加一致的外观。

/* Responsive Typography */

/* Define a base font-size and line-height for the body text */
body {
    font-size: 16px;
    line-height: 1.5;
}

/* Use media queries to adjust the font-size and line-height on different screen sizes */
@media (min-width: 768px) {
    body {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 20px;
        line-height: 1.7;
    }
}

/* Use rem units for any other typography elements, so that they are relative to the base font-size */
h1, h2, h3 {
    font-size: 2rem; /* 2 times the base font-size */
    margin-bottom: 0.5rem; /* 0.5 times the base font-size */
}

此CSS片段是一个简单的示例,说明了如何使用媒体查询来使印刷版响应能力。 font-sizeline-height属性设置为body元素,然后使用媒体查询在不同的断点进行调整。通过将rem单元用于其他排版元素,它们也将相对于基本字体大小,从而易于在整个站点中保持一致的排版量表。

8. Take Advantage of Shorthand CSS

速记CSS允许您更快,更有效地编写CSS。它还有助于使您的代码更加有条理,更易于阅读。

/* Shorthand CSS is a way to write CSS properties and values in a more concise way.
In this CSS Snippet, we'll use shorthand to set the margin and padding for a block element */

/* The element we'll be styling */
#my-block {

  /* Shorthand for setting the margin on all sides. 
  The order is top, right, bottom, left */
  margin: 10px 20px 30px 40px;

  /* Shorthand for setting the padding on all sides. 
  The order is top, right, bottom, left */
  padding: 5px 10px 15px 20px;
}

在此示例中,我们使用速记将边缘和填充在元素的所有侧面设置,并具有“ my-block” 的ID。保证金速记属性设置为“ 10px 20px 30px 40px” ,该将最高边距设置为10px,右边边距为20px,底部边距为30px,左边的边距为40px。填充速记属性设置为“ 5px 10px 15px 20px” ,将顶部填充设置为5px,右填充到10px,底部填充为15px,左填充到20px。 p>

ðânote-重要的是要注意,如果您只想在元素的一侧设置边距或填充,则可以使用“ margin -top” ,“ padding-right” 等等。

9. Use CSS to Create Custom Scrollbars

CSS可用于自定义浏览器滚动条的外观。这可以帮助创建一个更独特和美观的设计。

/* 
  Custom Scrollbars using CSS
  This code snippet will change the appearance of scrollbars on the page 
  when used in conjunction with ::-webkit-scrollbar pseudo-element
*/

/* Select the scrollbar element */
::-webkit-scrollbar {
  /* Change the width of the scrollbar */
  width: 10px;
  /* Change the background color of the scrollbar */
  background-color: #F5F5F5;
}

/* Select the thumb (draggable part) of the scrollbar */
::-webkit-scrollbar-thumb {
  /* Change the border radius of the thumb */
  border-radius: 10px;
  /* Change the background color of the thumb */
  background-color: #007bff;
}

/* Select the thumb on hover */
::-webkit-scrollbar-thumb:hover {
  /* Change the background color of the thumb on hover */
  background-color: #0056b3;
}

此代码段使用::-webkit-scrollbar伪元素来选择和样式的滚动条,以及::-webkit-scrollbar-thumb pseudo-lement来选择和样式的滚动条的拇指(可拖动部分)。它改变了滚动条和拇指的宽度,背景颜色和边框半径,并改变了悬停在悬停的拇指的背景颜色。请注意,这仅在基于Webkit的浏览器(例如Chrome和Safari)中起作用。

10. Utilize Responsive Images

响应式图像变得越来越流行,可以用来确保您的图像在所有设备上看起来都很好。

/* Define the default image size */
img {
    max-width: 100%;
}

/* Use media queries to change image size on different screen sizes */
@media (min-width: 768px) {
    img {
        width: 50%; /* Half the size on screens 768px and up */
    }
}

@media (min-width: 992px) {
    img {
        width: 25%; /* One quarter the size on screens 992px and up */
    }
}

此CSS摘要使用媒体查询来更改不同屏幕尺寸的img元素的宽度。默认的max-width设置为100%,这意味着图像将缩小以适合容器,但永远不会扩展。然后,当屏幕宽度至少为768px时,媒体查询将图像的宽度更改为50%,当屏幕宽度至少为992px时。

您可以调整媒体查询断点和百分比值以满足您的特定设计需求。

谢谢您的阅读! ð