BootStrap的下载及使⽤⽅法
我们看上⽅的版本,这⾥咱们点开Bootstrap3,主页如图下
点击下载,进⼊如下⽹页,点击下载"⽤于⽣产环境的Bootstrap"
在idea中分别创建css,js⽂件夹,然后将下载好的bootstrap解压,将如下,css,js⽂件拖⼊到idea中新建的css,js⽂件夹下
然后具体怎么去使⽤bootstrap的样式和组件之类的咱们不需要去背,从官⽹的上⽅去选择⾃⼰需要的样式,将相关代码copy下来再⾃⼰去调整即可24种颜调配大全
⽐如如下,选择"全局css样式"--> "表单"replace wt box
将代码copy我们的项⽬中即可。
register.html如下:
jquery下载的文件怎么使用<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- 在url上使⽤@标签,可以帮我们⾃动加上contextpath -->
<link rel="stylesheet" th:href="@{/css/bootstrap.min.css}">
<script th:src="@{/js/bootstrap.min.js}"></script>
</head>
<body>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> </div>安全断言标记语言
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
margin属性负值</div>
<div class="checkbox">
如何修改字体大小<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</body>
</html>
启动项⽬,访问
在bootstrap中有很多组件、样式等,我们很难去所需要的组件等,可以在页⾯中按Ctrl+F,快速查,如下图:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论