初识Bootstrap
学习Bootstrap动因
尝试自己写毕设前端页面,被自己丑哭。恰巧在《FlaskWeb开发》中偶遇了Bootstrap。
Bootstrap简介
Bootstrap是Twitter开发的一个开源框架,它提供的用户界面组件可用于创建整洁且具有吸引力的页面,而且这些页面还能兼容所有现代Web浏览器。——《FlaskWeb开发》
看到一个例子,真切感受到了Bootstrap的魅力
<div class="col-center-block">
<!--展示朋友列表-->
{%if author.friends%}
<table class="table table-bordered table-striped table-hover table-condensed">
<thead class="alert-danger">
<th>姓名</th>
<th>年龄</th>
</thead>
{%for f in author.friends%}
<tr class="alert-success">
<td>{{f.name}}</td>
<td>{{f.age}}</td>
</tr>
{%endfor%}
</table>
{%endif%}
</div>

本文介绍了作者在尝试自行编写毕业设计前端页面时遇到的困难,并分享了通过《Flask Web开发》一书了解到Bootstrap的经历。Bootstrap是由Twitter开发的一款开源前端框架,能够帮助开发者快速构建美观且响应式的网页。


被折叠的 条评论
为什么被折叠?



