zoukankan      html  css  js  c++  java
  • 43前端

    今日内容总结

    块级标签

    排版标签

    p div  hr pre
    p 前后有点空白
    div 没有任何样式的块  span
    hr  分割线   br 换行
    pre 保留里面的空格
    

    列表

    ul  ol  dl
    ul li
    	type: disc  square circle none  
    ol li
    	type: 1 a A I i  start: 2
    dl dt dd
    	dt 标题
    	dd 内容
    

    表格

    table
    thead:tr
       th  
    tbody:tr 
       td
    border 1  cellpading  内容和单元格的距离  cellspacing 单元格和边框的距离
    rowspan 合并行   colspan 合并列
    align 水平排列  left center right
    valign 垂直排列 top  middle bottom
    

    表单

    form action:提交的地址
    input 
    	type:textpassword
    adiocheckboxsubmituttonfiledate
    esethidden
    	namevalue
    	text: placeholder 提示 
    		  readonly  只读  不能改值但是可以提交
    		  disabled  禁用  不能改值 不可以提交
    	radiocheckbox : checked 选中
    select : name  size=3 multiple(多选) 
    	option : value   selected 选中
    
    label 
    	<label for="input的id">用户名</label>  input:id 
    
    <textarea name="" cols="10" rows="30"></textarea>
    文本框
    
    注意:
    	1. 要提交数据  必须有一个input的类型为submit或者button
    	2. 上传文件 file ,改编码类型form:enctype="multipart/form-data"
    

    CSS

    引入的方式

    行内引入
    <div style="color: red"></div>
    
    内联引入
      <style>
            div {
                color: red;
            }
            
      </style>
      
      
    外联引入  链接式
    	<link rel="stylesheet" href="home.css">
    外联引入  导入式
        <style>
            @import url('home.css');
        </style>
    

    简单样式

    color 字体颜色

    width 宽度

    height 高度

    background-color 背景颜色

    选择器

    基本选择器

    标签选择器  div  p  span a 
    id选择器  #id
    类选择器  .类
    通用选择器  *
    

    今日内容

    块级标签

    排版标签

    p:一个文本级别的段落标签 前后有间距

    P标签中不嵌套其他的块级标签

    div 没有任何样式的块级标签

    hr 分割线

    列表

    无序列表

    type="原点的样式"

    <!-- 样式 disc(实心圆、默认)、 circle(空心圆)、none(无)、square(方点)-->
    
    <ul >
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ul>
    
    <ul type="none">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ul>
    <ul type="circle">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ul>
    <ul type="square">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ul>
    
    
    有序列表

    type="数字的样式" start =“起始值”(数字)

    <!-- 样式 1(数字)、 a(小写字母)、A(大写)、I(罗马数字)-->
    
    <ol>
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ol>
    
    <ol type="1">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ol>
    
    <ol type="a" start="25">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ol>
    
    <ol type="A">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ol>
    
    <ol type="I">
        <li>手机</li>
        <li>电脑</li>
        <li>iPad</li>
    </ol>
    
    
    定义列表

    dt 标题

    dd 内容

    <dl>
        <dt>城市</dt>
        <dd>北京</dd>
        <dd>上海</dd>
        <dd>深圳</dd>
    
        <dt>城市</dt>
        <dd>北京</dd>
        <dd>上海</dd>
        <dd>深圳</dd>
    </dl>
    
    

    表格

    <!--有表头的表格-->
    <!--tbale 嵌套 thead tbody 
    	thead和tbody嵌套tr
    	tr嵌套 th  td 
    -->
    
    <!--tbale 属性 
    border 边框
    cellpadding   元素和单元格的边距
    cellspacing   单元格和边框的间距
    -->
    
    <!--tr 属性 
    align   内容的水平排列  left  center  right
    valign  内容的垂直排列  top middle bottom
    -->
    <!--td  属性 
    rowspan   占几行
    colspan   占几列
    -->
    
    <table border="1" cellpadding="20px" cellspacing="20px">
        <thead>
        <tr align="left">
            <th> 序号</th>
            <th> 姓名</th>
            <th> 年龄</th>
        </tr>
        </thead>
        <tbody>
        <tr align="center" valign="bottom">
            <td>1</td>
            <td >alex</td>
            <td >84</td>
    
    
        </tr>
        <tr align="center" valign="top">
            <td>2</td>
            <td >alex</td>
    
    
        </tr>
        <tr>
            <td>2</td>
            <td>wusir</td>
            <td rowspan="2">2208</td>
    
        </tr>
        </tbody>
    
    </table>
    
    <!-- 无表头的表格-->
    <table border="1" cellpadding="20px" cellspacing="20px">
        
        <tbody>
        <tr align="center" valign="bottom">
            <td>1</td>
            <td >alex</td>
            <td >84</td>
    
    
        </tr>
        <tr align="center" valign="top">
            <td>2</td>
            <td >alex</td>
    
    
        </tr>
        <tr>
            <td>2</td>
            <td>wusir</td>
            <td rowspan="2">2208</td>
    
        </tr>
        </tbody>
    
    </table>
    
    

    表单

    <!-- form 标签
    action: 提交的地址  
    -->
    
    <!-- input 标签
    type: 类型   
    	text:普通文本
    	password:密码 密文
    	radio:  单选框
    	checkbox: 复选框
    	submit: 提交按钮
    能提交数据 input有name属性  有value值
    
    -->
    
    <button>提交</button>  
    <!-- 
    form表单中button和type=‘submit’的input的作用是一样的
    -->
    
    
    <form action="http://127.0.0.1:9999">
        <input type="text" name="user" placeholder="请输入用户名">   <!--name:提交数据的key   value:值   placeholder:占位的内容 -->
        <input type="password" name="pwd" value="3714">
        <input type="radio" name="sex" value="1"> 男
        <input type="radio" name="sex" value="2" checked  > 女  <!-- checked默认选中 -->
        <input type="checkbox" name="hobby" value="1"> 跳
        <input type="checkbox" name="hobby" value="2"> 唱
        <input type="checkbox" name="hobby" value="3"> rap
        <input type="checkbox" name="hobby" value="4"> 篮球
        <input type="submit">
        <button>提交</button  
        
    </form>
    

    label

    <!--给input标签定义id  给label标签的for填上id-->
    <label for="i1">用户名:</label>
    <input id="i1" type="text" name="user" placeholder="请输入用户名">
    
    

    其他的input

    <input type="hidden" name="alex" value="alexdsb">   <!--  隐藏的input框  -->
    <input type="reset"> <!--  重置按钮  -->
    <input type="button" value="提交"> <!--  普通的按钮  -->
    <button type="button">提交</button>  <!--  普通的按钮  -->
    <input type="date">    <!--  日期格式  -->
    

    select option

    <!--下拉框 单选 -->
    <!--size  框的大小 -->
    <select name="city" id="" size="4" >
         <option value="1">北京</option>
         <option value="2"  selected >上海</option>  <!-- selected默认选中 -->
         <option value="3">深圳</option>
    </select>
    
    <!--下拉框 多选 -->
    <!--size  框的大小 -->
    <select name="city" id="" size="4"  multiple>
         <option value="1">北京</option>
         <option value="2">上海</option>
         <option value="3">深圳</option>
    </select>
    
    

    上传文件

    <input type="file" name="f1">   
    <form  enctype="multipart/form-data">  <!--编码指定为multipart/form-data-->
    

    CSS

    引入方式

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    
        <!--内联引入-->
        <style>
            div {
                color: #ffef6b
            }
    
        </style>
    
        <!--外联引入:链接  使用较多  -->
            <link rel="stylesheet" href="index.css">
        <!--外联引入:导入-->
        <style>
            @import url('index.css');
        </style>
    
    
    </head>
    <body>
    
    
    <!--行内引入-->
    <div style="color: red">黄焖鸡米饭</div>
    <div>黄焖鸡排骨</div>
    
    </body>
    </html>
    

    简单的样式

     color: #ffef6b;      /*字体颜色*/
      200px;		  /*宽度*/
     height: 200px;		  /*高度*/	
     background: blue;   /*背景颜色*/
    
    
    

    选择器

    基本选择器

    标签id类通用选择器

    <style>
            div {      标签
                color: #ffef6b;
            }
    
            a {
                color: green;
            }
    
    
            span {
                color: #42ff68;
            }
    
            #sp1 {    id
                color: chartreuse;
    
            }
    
            .cai {    类
                 color: #192aff;
            }
    
            .x1 {
                 background: #3bff00;
            }
        
        	
    		* {
                 background: #3bff00;
            }
    
        </style>
    
    
    
    
    <body>
    
    <!--<div >黄焖鸡米饭</div>-->
    <!--<div>黄焖鸡排骨</div>-->
    
    <div>黄焖鸡米饭
        <span class="cai">鸡</span>
        <span>米饭</span>
        <a href="xxxx">外卖连接</a>
    </div>
    <div>黄焖鸡排骨
        <span class="cai x1 x2">排骨</span>
        <span>米饭</span>
    </div>
    <span id="sp1">米饭</span>
    
    
    </body>
    
    
  • 相关阅读:
    grape入门
    半个小时写的一个二叉搜索树,实现了增,删,查功能
    Struts2 MVC 同 Spring MVC 的比较
    阿里巴巴 2016 java 实习岗位笔试题(昨天出炉)
    自己用20分钟java实现的单向链表(含有增删改查操作)
    关于 古人劝学 --写的真心是好 真的有收获
    JDK动态代理堆栈图详解--干货
    论闷声挣大钱与网红现象
    spring beanfactory --实现自己简单的 bean工厂类
    Spring IOC example one
  • 原文地址:https://www.cnblogs.com/-xct/p/11649771.html
Copyright © 2011-2022 走看看