根据设备尺寸,自动调整布局,有bootstrap和foundation等
相当于C#UI里面的容器系统,bootstrap对css进行扩展,使用了类似less文件中的变量定义,sacc不仅增加了变量还多了继承、混合、嵌套等功能
布局中必须row包含col,不能单独col
<div class="row">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-6"> //兼容多个设备,并排写
<p>RUNOOB</p>
</div>
<div class="col-sm-9 col-md-6">
<p>test</p>
</div>
</div>
</div>
bootstrap再html的display css属性上封装了三种布局方式,使用控件嵌套方式布局,设置宽度最大值和最小值 .container, which sets a max-width at each responsive breakpoint .container-fluid, which is width: 100% at all breakpoints .container-{breakpoint}, which is width: 100% until the specified breakpoint
bootstrap3支持字体图标Glyphicons,bootstrap4不支持
安装bootstrap4
npm install bootstrap(使用的时候需要css) npm install jquery npm install popper.js (不要安装popper,要带js的)
安装bootstrap3
npm install bootstrap@3(使用的时候需要css) npm install jquery(node导入jquery) import from ‘jquery’ window. = window.jQuery = //jquery设置window变量,window变量可以delete 或者修改node_modules/react-scripts/config/webpack.config.js设置,scripts文件夹下react-script执行的进程文件
参考:https://www.cnblogs.com/zaifeng0108/p/7268260.html
安装react-bootstrap(react-bootstrap标签自定义,属性和bootstrap相同)
npm install react-bootstrap
@media=“mediatype and|not|only (expressions)”
媒体类型 | 描述 |
---|---|
all | 用于所有多媒体类型设备 |
用于打印机 | |
screen | 用于电脑屏幕,平板,智能手机等。 |
speech | 用于屏幕阅读器 |
< meta name=“viewport” content=“width=device-width, initial-scale=1.0”>
html全屏,position:fixed
bootstrap类名,一个字母属性简写,"-"后是取值
primary 深蓝 secondary 灰 success 绿 warning 黄 danger 红 info 浅蓝 dark 黑 white 白 light 亮白
formgroup示例
<FormGroup row>
<Label className="col-2">用户名</Label>
<Input className="col-6"></Input>
</FormGroup>
参考:https://blog.csdn.net/weixin_39987434/article/details/97111457 https://blog.csdn.net/qq_32719215/article/details/99082629
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有