代码如下: <style type="text/css"> .title{ position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 300px; height: 300px; font-size: 2 ...
分类:
Web程序 时间:
2021-02-04 11:40:34
阅读次数:
0
SPA( single-page application )仅在 Web 页面初始化时加载相应的 HTML、JavaScript 和 CSS。一旦页面加载完成,SPA 不会因为用户的操作而进行页面的重新加载或跳转;取而代之的是利用路由机制实现 HTML 内容的变换,UI 与用户的交互,避免页面的重新 ...
分类:
其他好文 时间:
2021-02-03 11:00:18
阅读次数:
0
1、例如(登录/注册): header 引入 bootstrap : <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src ...
分类:
其他好文 时间:
2021-02-03 10:41:48
阅读次数:
0
二进制日志: 1先确认正在用的是哪个日志: show master status; 2查看当前日志文件的事件: show binlog events in 'mysql-bin.000003'; 3通过位置号截取二进制日志: mysqlbinlog --start-position --stop-p ...
分类:
其他好文 时间:
2021-02-03 10:37:19
阅读次数:
0
语法:https://www.runoob.com/css/css-syntax.html <!DOctype html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> body{bockground-color:#d ...
分类:
Web程序 时间:
2021-02-02 10:52:40
阅读次数:
0
Razor 页面组成到底有哪些内容? 包含了Layout的母版嵌套的返回需要渲染的视图内容; 如何嵌套? 通过Layout中的RenderBody()方法做了替换,把返回的视图替换到母版页中,形成了一整块的内容。目的返回到不同页面时候,能够把不变的部分视图能够重用。 在母版页中使用css,js是为了 ...
分类:
Web程序 时间:
2021-02-02 10:36:03
阅读次数:
0
? A common typing error is to place the hands on the keyboard one row to the right of the correct position. So ‘Q’ is typed as ‘W’ and ‘J’ is typed as ...
分类:
其他好文 时间:
2021-02-01 12:19:45
阅读次数:
0
layui基础知识 1.layui模块化编程引入方法 只需要引入两个文件layui.css和layui.js <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=devic ...
分类:
其他好文 时间:
2021-02-01 11:55:02
阅读次数:
0
在项目中建的app中可直接新建templates文件,跟static文件 此时,不用设置settings,然后 在html中引入 <link rel="stylesheet" href="{% static 'css/index.css' %}"> <script src="{% static 'j ...
分类:
其他好文 时间:
2021-01-30 12:02:56
阅读次数:
0
Spring Boot 可以结合 Thymeleaf 模版来整合 HTML,使用原生的 HTML 作为视图。 Thymeleaf 模版是面向 Web 和独立环境的 Java 模版引擎,能够处理 HTML、XML、JavaScript、CSS 等。 ...
分类:
编程语言 时间:
2021-01-29 12:05:11
阅读次数:
0