js实现九宫格布局效果
(编辑:jimmy 日期: 2024/11/7 浏览:3 次 )
本文实例为大家分享了js实现九宫格布局效果的具体代码,供大家参考,具体内容如下
效果
代码如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } #container{ width: 1200px; margin:0 auto; } #top{ padding: 20px; } #bottom{ position: relative; } .box{ //每一个小块 width: 220px; height: 360px; margin: 0 15px 15px 0; background-color:#e8e8e8; } .box img{ width: 220px; height: 300px; } .box p{ color: orangered; } </style> </head> <body> <div id="container"> <div id="top"> <button id="btn1">3列</button> <button id="btn2">4列</button> <button id="btn3">5列</button> </div> <div id="bottom"> <div class="box"> <img src="/UploadFiles/2021-04-02/bg2.jpg">以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:微信小程序实现电子签名并导出图片