前端学习---day1(以百度搜索页面为例)

代码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>百度一下,你就知道</title>
   <style>
       body {  
           font-family: Arial, sans-serif;
           text-align: center;   
           margin-top: 2px;
       }<!---标签选择器--->
       ul.menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: white;
        }
 
        ul.menu li {
            float: left;
        }

        ul.menu li a {
            font-size: 12px;
            display: block;
            color: black;
            text-align: center;
            padding: 8px 10px;
            text-decoration: none;
        }
 
        ul.menu li a:hover {
            color: #4662d9;
        }
       .logo {
           margin-bottom: 20px;
       }
       .search-box {
           width: 500px;
           height: 35px;
           border: 2px solid#4e6ef2;
           padding: 0 10px;
           font-size: 16px;
           border-radius: 10px;
           outline: none;
       }
       .search-button {
           width: 100px;
           height: 38px;
           background-color: #4e6ef2;
           color: white;
           border: none;
           font-size: 16px;
           border-radius: 10px;
           cursor: pointer;
           margin-left: 2px;
       }
       .search-button:hover {
           background-color: #4662d9;
       }
       
   </style>
</head>
<body>
    <ul class="menu">
        <li><a href="https://news.baidu.com/">新闻</a></li>
        <li><a href="https://map.baidu.com/">地图</a></li>
        <li><a href="https://tieba.baidu.com/index.html">贴吧</a></li>
        <li><a href="https://haokan.baidu.com/?sfrom=baidu-top">视频</a></li>
        <li><a href="https://image.baidu.com/">图片</a></li>
        <li><a href="https://pan.baidu.com/">网盘</a></li>
        <li><a href="https://wenku.baidu.com/">文库</a></li>
        <li><a href="https://chat.baidu.com/">AI助手</a></li>
       </ul> 
   <div class="logo">
       <img src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" alt="百度logo" width="240" height="120">
   </div>
   <div>
       <input type="text" class="search-box" placeholder="请输入搜索内容">
       <button class="search-button">百度一下</button>
   </div>
</body>
</html>

效果图

 

代码分析

CSS样式---字体

font-family:

用法:这里设置了两种字体类型(Arial,Helvetica都属于Sans_serif系列),建立后备机制

p{font-family:Arial,Helvetica,Serif;}

字体样式font-style

主要是用于指定斜体文字的字体样式属性。

这个属性有三个值:

  • 正常 - 正常显示文本

  • 斜体 - 以斜体字显示的文字

  • 倾斜的文字 - 文字向一边倾斜(和斜体非常类似,但不太支持)

    font-style:normal
    font-style:italic
    font-style:oblique

font-size

绝对大小和相对大小:

绝对大小直接用像素值设置;相对大小(1em=16px)比如:

font-size:2.5em  是40px

font-weight---字体粗细

  • 取值范围:100~900

  • 关键字

    • normal(正常,默认值)

    • lighter(较细)

    • bold(较粗)

    • bolder(很粗)

font-variant

  • noraml 正常

  • small-caps 以小型大写字母显示(以下是两种类型的区别)

文本(text)

对齐方式---text-align

  1. 居中对齐{text-align:center;}

  2. 左端对齐{text-align:left;}

  3. 右端对齐{text-align:right;}

  4. 两端对齐{text-align:justify;}

文本修饰

text-decoration属性用来设置或删除文本的装饰。

  1. 删除链接的下划线

    a{text-decoration:none;}

  2. 装饰文字

     <style>
         h1{text-decoration:overline;}  /*上划线*/
         h2{text-decoration:underline;} /*下划线*/
         h3{text-decoration:line-through;} /*删除线*/
     </style>
     <body>
         <h1>标题1</h1>
         <h2>标题2</h2>
         <h3>标题3</h3>
     </body>

文本转换

  1. 所有字母大写:{text-transform:uppercase;}

  2. 所有字母小写:{text-transform:lowercase;}

  3. 首字母大写:{text-transform:capitalize;}

文本缩进

{text-indent:*px}这个属性用来设置文本段落第一行的缩进。(*指任何数字,下同)

字符间距

{letter-spacing:*px;}

行距

{line-height:*px;}

文本颜色

{color:black} 

边框(border)

border-style

这段代码用的是solid属性(实线框)

border-width(边框宽度)

用像素值来表示

border-color(边框颜色)

border-radius(圆角半径) 像素值越大,四角越平滑。

 BOX(盒子)

  • Margin(外边距) - 清除边框外的区域,外边距是透明的。
  • Border(边框) - 围绕在内边距和内容外的边框。
  • Padding(内边距) - 清除内容周围的区域,内边距是透明的。
  • Content(内容) - 盒子的内容,显示文本和图像。

  

整个盒子的宽度:margin-left*2+padding*2-left+content (高度同理)

导航栏

即为链接列表,与列表的写法类似。见下一篇吧 明天写!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值