摘要:<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.1/css/bootstrap.min.css"/> <!--调用bootsrap--> <div class="container-fluid"> <!--.container
阅读全文
摘要:三个影响HTML元素布局的重要属性:padding(内边距)、margin(外边距)、border(边框) <style> .injected-text { margin-bottom: -25px; text-align: center; } .box { border-style: solid;
阅读全文
摘要:以代码加注释的方法来记录吧。文字为主的基础知识的记录感觉写的麻烦,看得也麻烦。 <link href="https://fonts.gdgdocs.org/css?family=Lobster" rel="stylesheet" type="text/css"> <!--链接引入外部字体--> <s
阅读全文
摘要:HTML即Hyper Text Markup Language(超文本标记语言)。 <h1>Hello</h1> 开始标签,结束标签。中间为显示文本。标签属性在开始标签中。 基本标签结构: <html> <!-- 根标签--> <head> <title><title> </head> <body>
阅读全文