上图显示:在 CSS 盒子模型 (Box Model) 规定了元素处理元素的几种方式:
width和height:内容的宽度、高度(不是盒子的宽度、高度)。padding:内边距。border:边框。margin:外边距。
在template下新建一个html,并写入设置内容尺寸的内容
测试
设置路由
from flask import Flask from flask import render_template app = Flask(__name__) @app.route('/calc') def calc(): return render_template('calc.html') if __name__ == '__main__': app.run( host='0.0.0.0', port=8888, debug=True, )
访问