鱼C论坛

 找回密码
 立即注册
查看: 10640|回复: 46

[庖丁解牛] 0 0 0 6 - 美化字体

[复制链接]
发表于 2019-3-26 09:21:16 | 显示全部楼层
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <meta charset="utf-8">
  5.         <title>欢迎来到HTML世界</title>
  6.         <style type="text/css">/*指定CSS的样式定义*/
  7.                 body{
  8.                         background: url(1.png)center center;/*图片加center center,就能保持一直显示中间位置,如果不加,当页面缩小到小于图片尺寸时,只能出现图片顶部、左侧的内容*/
  9.                         background-size: cover;/*不会产生平铺的效果,只会一张图放大缩小*/
  10.                         margin: 0;
  11.                         padding: 0;/*潜规则,提高自主控制*/
  12.                         position: relative;/*若设置containertop属性,container必须绝对定位,body相对定位*/

  13.                 }
  14.                
  15.                 html,body{/*为了确保照片自适应屏幕显示,需要给body以及body的父级(html)设置height属性,使之充满全屏。*/
  16.                         height: 100%; /* height如果不设置100%,就会出现重复
  17.                 */
  18.                         color: #ffffff;
  19.                         font-family:sans-serif;

  20.                 }
  21.                 #container{
  22.                         width: 100%;
  23.                         text-align: center;/*文字居中*/
  24.                         position: absolute;/*绝对定位*/
  25.                         top: 50%;
  26.                         transform: translateY(-50%);/*使container在Y轴方向上移动50%*/
  27.                 }
  28.                 h1{
  29.                         font-size: 55px;
  30.                         margin-bottom: 22px;/*控制行间距,h1标题与下面p之间的距离*/
  31.                 }
  32.                 p{
  33.                         font-size: 22px;
  34.                         margin-botton:22px;
  35.                 }
  36.                 a{
  37.                         font-size:33px;
  38.                 }
  39.         </style>
  40. </head>
  41. <body>
  42.         <div id="container"><!--div封装,id区块说明-->
  43. <h1>我爱鱼C</h1>
  44. <p>WWW.FishC.com - 让编程改变世界</p>
  45. <a >传送门</a>
  46. </div>
  47. </body>
  48. </html>
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-10-21 03:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表