博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gridlayout小例子
阅读量:6716 次
发布时间:2019-06-25

本文共 893 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>

<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <link rel="stylesheet" href="../css/girdlayout.css">
</head>
<body>
  <h1>这是一个关于gridLayout的小例子</h1>
  <hr>
  <div class="main">
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
    <div>6</div>
    <div>7</div>
  </div>
</body>
</html>

CSS

h1{display: block;text-align:center;}
hr{color: blue; font-size: 12px;}
* {box-sizing: border-box;}
.main {
    border: 2px solid #f76707;
    border-radius: 5px;
    background-color: #fff4e6;
}
.main > div {
    border: 2px solid #ffa94d;
    border-radius: 5px;
    background-color: blue;
    padding: 1em;
    color: red;
}
.main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

转载于:https://www.cnblogs.com/chengxiangboke/p/9710579.html

你可能感兴趣的文章
javascript实现浏览器Ctrl+F页面搜索功能
查看>>
自己简单实现Spring的IOC原理
查看>>
解析Json更快的Gson的APT版本开源库
查看>>
慎用!BLEU评价NLP文本输出质量存在严重问题
查看>>
WebAssembly Studio:Mozilla提供的WASM工具
查看>>
专访何红辉:谈谈Android源码中的设计模式
查看>>
不用鼠标/键盘/显示器给树莓派安装系统
查看>>
InfoQ宣布成立CNUT容器技术俱乐部 欲连接中国容器社区
查看>>
你知道为什么Facebook的API以一个循环作为开头吗?
查看>>
Product Mastery 作者访谈
查看>>
极限编程创始人Ron Jeffries建议开发者放弃敏捷
查看>>
SSPL的MongoDB再被抛弃,GUN Health也合流PostgreSQL
查看>>
SegmentFault 2016 第四季度 Top Writer
查看>>
Go 领军人物谢孟军:智能制造渴望银弹,首先要摒弃偏见
查看>>
金丝雀测试实践
查看>>
KubeEdge:开源的Kubernetes原生边缘计算框架
查看>>
AccessibilityService
查看>>
麦当劳数字化转型中获得的6个数据科学经验
查看>>
react反模式之index作为key
查看>>
如何撰写好文档?精益文档的六个实践
查看>>