当前位置: 首页 > news >正文

高大上的公司网站阿里云服务器win系统建站教程

高大上的公司网站,阿里云服务器win系统建站教程,网线制作心得体会,如何推广app让别人注册1、flex.css样式的使用场景 在移动端开发中#xff0c;并不是所有的浏览器#xff0c;webview#xff0c;微信等各种版本都支持标准的flex#xff0c;但是基本上都会支持-webkit-box#xff0c;所以flex.css的主要作用是保证每一个属性都能支持标准flex或旧版本的-webkit-…1、flex.css样式的使用场景 在移动端开发中并不是所有的浏览器webview微信等各种版本都支持标准的flex但是基本上都会支持-webkit-box所以flex.css的主要作用是保证每一个属性都能支持标准flex或旧版本的-webkit-box。由于flex.css采用了autoprefixer编译所以能够保证在浏览器不支持标准flex布局的情况下回滚到旧版本的-webkit-box保证移动设备中能呈现出一样的布局效果。于是一款移动端快速布局的神器诞生了...Flex布局的出现正是为了解决浮动和定位这些局限性它允许我们在一个容器内对子元素进行灵活的排列、对齐和空间分配。 1.2 主轴Main Axis和交叉轴Cross Axis 主轴main axis 沿其布置子容器的从 main-start 开始到 main-end 请注意它不一定是水平的这取决于 flex-direction 属性见下文 main size 是它可放置的宽度是容器的宽或高取决于 flex-direction。 交叉轴cross axis 垂直于主轴的轴称为交叉轴它的方向取决于主轴方向是主轴写满一行后另起一行的方向从 cross-start 到 cross-end cross size 是它可放置的宽度是容器的宽或高取决于 flex-direction。 2. 安装 npm install --save flex.css 3.设置主轴方向 templatedivh2从上到下/h2div classbox flexdir:topdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2从右到左/h2div classbox flexdir:rightdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2从下到上/h2div classbox flexdir:bottomdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2从左到右默认/h2div classbox flexdir:leftdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/div/div /template style langscss scoped .box {width: 100%;height: 150px;border: 1px solid #ddd; } .item {width: 30px;height: 30px;line-height: 30px;color: #fff;text-align: center; } /style4、主轴对齐方式 templatedivh2从右到左/h2div classbox flexmain:rightdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2从左到右默认/h2div classbox flexmain:leftdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2两端对齐/h2div classbox flexmain:justifydiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/divh2居中对齐/h2div classbox flexmain:centerdiv classitem stylebackground: red1/divdiv classitem stylebackground: blue2/divdiv classitem stylebackground: #0003/div/div/div /template style langscss scoped .box {width: 100%;height: 150px;border: 1px solid #ddd; } .item {width: 30px;height: 30px;line-height: 30px;color: #fff;text-align: center; } /style script setup/script5、交叉轴对齐方式 templatedivh2从上到下默认/h2div classbox flexcross:topdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2从下到上/h2div classbox flexcross:bottomdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2基线对齐/h2div classbox flexcross:baselinediv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2居中对齐/h2div classbox flexcross:centerdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2高度并排铺满/h2div classbox flexcross:stretchdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/div/div /template style langscss scoped .box {width: 100%;height: 150px;border: 1px solid #ddd; } .item {width: 30px;height: 30px;line-height: 30px;color: #fff;text-align: center; } /style script setup /script6、子元素设置 templatedivh2子元素平分空间/h2div classbox flexbox:meandiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2第一个子元素不要多余空间其他子元素平分多余空间/h2div classbox flexbox:firstdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2最后一个子元素不要多余空间其他子元素平分多余空间/h2div classbox flexbox:lastdiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/divh2两端第一个元素不要多余空间其他子元素平分多余空间/h2div classbox flexbox:justifydiv classitem stylebackground: red;1/divdiv classitem stylebackground: blue;2/divdiv classitem stylebackground: #000;3/div/div/div /template 7、flex-box元素剩余空间比例分配 templatedivh2flex-box实现两端不需要多余空间中间占满剩余空间/h2div classbox flexdiv classitem flex-box0 stylebackground: red1/divdiv classitem flex-box1 stylebackground: blue2/divdiv classitem flex-box0 stylebackground: #0003/div/div/div /templatestyle langscss scoped .box {width: 100%;height: 100px;border: 1px solid #ddd; } .item {width: 30px;height: 30px;line-height: 30px;color: #fff;text-align: center; } /stylescript setup/script
http://www.dnsts.com.cn/news/202644.html

相关文章:

  • 建设公司网站模版个人网站做什么类型好
  • 手机网站自适应布局怎么做学网站开发要学什么
  • 怎么添加网站做国外订单用哪个网站
  • 长沙公司网站万网网站空间服务范围
  • wordpress博客文章加密杭州seo泽成
  • 做水果的网站有哪些网站 横幅
  • 联客易外贸网站建设推广施工企业介绍
  • c2c网站建设需求分析网页设计尺寸适配
  • 顺德网站建设多少钱排名网站优化培训
  • 营销型网站的评价标准孝感织云网站建设
  • 电子商务网站开发环境示范网络营销工作内容和职责
  • asp网站制作任丘网站建设公司
  • 移动网站建设渠道网络推广网上营销
  • 顺义企业建站济南网站建设开发公司哪家好
  • 自己怎么做搬家网站英语不行如何编程做网站
  • 中国建设部官方网站资格证查询微信公众号登录平台入口官网
  • 网站客户留言大数据时代的智能营销
  • 青岛网站建设有限公司桂林北站到阳朔怎么坐车
  • 安徽网站开发公司网站编程入门教程
  • 做类型网站找国外客户用哪个平台
  • 凌晨网站建设公司深圳做营销型网站
  • win7 iis设置网站首页wordpress建站要钱吗
  • 做网站是什么公司短视频舆情
  • 怎么做非法彩票网站吗杭州网站设计开发
  • 怎样在微信中做网站wordpress无法上传
  • 微信手机网站设计专业开发网站设计
  • 网站网站开发建设个人网站要有什么
  • 杭州观建设计网站做网站域名优化的怎么样
  • 打开上次浏览的网站模板网络游戏开发平台
  • 百度微信网站东莞市人力资源网官网