Usage of CSS grid-auto-columns property

PHPz
Release: 2023-09-03 09:25:10
forward
1164 people have browsed it

CSS grid-auto-columns 属性的用法

Use the grid-auto-columns property to set the default size of columns.

You can try running the following code to implement the grid-auto-columns property using CSS

Example

Live demonstration

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            display: grid;
            grid-auto-columns: 100px;
            grid-gap: 10px;
            background-color:red;
            padding: 10px;
         }
         .container>div {
            background-color: yellow;
            text-align: center;
            padding:10px 0;
            font-size: 20px;
         }
      </style>
   </head>
   <body>
      <div class = "container">
         <div class = "ele1">1</div>
         <div class = "ele2">2</div>
         <div class = "ele3">3</div>
         <div class = "ele4">4</div>
         <div class = "ele5">5</div>
         <div class = "ele6">6</div>
      </div>
   </body>
</html>
Copy after login

The above is the detailed content of Usage of CSS grid-auto-columns property. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template