1.HTML 1.1 Form tag: form The form tag creates a form on the html page. The form tag does not display anything on the browser. If the data needs to be submitted to the server, the tag responsible for collecting the data must be placed in the form tag body content. Action attribute: request path, determine the address (path) where the form is submitted to the server Method attribute: request method. Commonly used values: get, post get:Default value The submitted data is appended to the request path. For example: /1.html?username=alex&password=1234, data format k/v, append using ? connection, and then use & connection for each pair of data Because the request path length is limited, all get requests submit limited data. Post: The submitted data is no longer appended to the request path (neither displayed on the address bar) The size of the submitted data is not displayed Copy after login 1.2 Input field label: input The tag is used to obtain user input information. The type attribute value is different and the collection method is different. Most commonly used tags. rype attribute text: text box, a single-line input field in which the user can enter text. Default width is 20 characters Password: Password box, password field. Characters in this field appear in black circles. radio: radio button, representing one of a set of mutually exclusive option buttons. When a button is selected, the previously selected button becomes unselected. Submit: Submit button. The submit button sends the form data to the server. Generally, the name attribute is not written, otherwise the word "submit" will be submitted to the server. Because different projects require different fields, I have not written out all the form elements. The use of the following tags also needs to be mastered by everyone. checkbox:checkbox Filee: file upload component, provides "browse", press to select the file to be uploaded. Hidden: Hidden field, the data will be sent to the server, but the browser will not display it. Reset: Reset button. Restore the form to default values. Image: Image submission button, set the image for the button through src. Button: Common button, often used in combination with JavaScript. name: element name. If you need to submit form data to the server, you must provide the name attribute value. The server obtains the submitted data through the attribute value. Value: Set the default value of the input tag. The submit and reset buttons submit data size: size Checked attribute: The radio button or check box is selected. readonly: Whether it is read-only disabled: whether it is available maxlength: The maximum length allowed for input 1.3 Drop-down list label: select drop-down list. Available for single or multiple selections. Need to use sub-tag to specify list items name attribute: the name sent to the server Multiple attribute: Do not write the default single selection, and the value is "multiple" to indicate multiple selection Size attribute: The number of visible options when selecting multiple items. Sub-tag: an option (one item) in the drop-down list selected: Check the current list item Value: The option value sent to the server. 1.4 Text area label: textarea Text area. Multi-line text input control. cols attribute: the number of columns in the text field rows attribute: the number of rows in the text field 1.5 Button label: button(understand) Button labels are generally rarely used and provide the "normal|reset|submit" function. Different browsers have different default values. 2. DIV CSS 2.1 What is div div is an ordinary HTML tag that divides areas. Features: Exclusive line. Complex effects cannot be achieved alone. Must be combined with CSS styles for rendering. div is usually a block-level element can define a division or section (division/section) in the document. The tag divides a document into independent, distinct parts. It can be used as a strict organizational tool and does not use any formatting associated with it. If is marked with an id or class, the tag becomes more effective. 2.2 Overview of CSS 2.2.1 What is CSS CSS is usually called CSS style or cascading style sheet. It is mainly used to set the text content (font, size, alignment, etc.), image shape (height and width, border style, margin, etc.) and layout of the page in HTML pages. Appearance display style. CSS can make HTML pages look better, CSS color matching can make users more comfortable, CSS DIV layout is more flexible, and it is easier to draw the structure that users need. 2.2.2 CSS名词解释 CSS(Cascading Style Sheets):指层叠样式表 样式:给HTML标签添加需要显示的效果。 层叠:使用不同的添加方式,给同一个HTML标签添加样式,最后所有的样式都叠加到一起,共同作用于该标签。 2.2.3 CSS样式规则 使用HTML时,需要遵从一定的规范。CSS亦如此,想要熟练的使用CSS对网页进行修饰,首先需要了解CSS样式规则。具体格式如下 选择器{属性1:属性值;属性2:属性值;..}Copy after login 在上面的样式规则中,“选择器”用于指定CSS样式作用的HTML对象,花括号内是对该对象设置的具体样式。属性和属性值以键值对方式出现,使用英文冒号“:”分隔。多个属性之间使用英文分号“;”分隔。例如: h3{ color: red; font-size: 100px; } Copy after login 初学者在书写CSS样式时,除了要遵循CSS样式规则,还必须注意CSS代码结构中的几个特点,具体如下: CSS样式“选择器”严格区分大小写,“属性”和“属性值”不区分大小写。 多个属性之间必须用英文状态下的分号隔开,最后一个属性后的分号可以省略,但是,为了便于增加新样式最好保留。 如果属性的值由多个单词组成且之间包含空格,则必须为这个属性值加上英文状态下的引号。例如: p{font-family:"Times New Roman";}Copy after login 在编写CSS代码时,为了提高代码的可读性,通常会加上CSS注释,例如: /* 这是css注释文本,此文本不会显示在浏览器窗口中 */Copy after login 在CSS代码中空格是不被解析的,花括号以及分号前后的空格可有可无。因此,可以使用空格键、Tab键、回车键等对样式代码进行排版,即所谓的格式化CSS代码,这样可以提高代码的可读性。例如: h2{color: red; font-size: 20px;}Copy after login 和 h2{ color: red; /* 定义字体大小属性 */ font-size: 20px; /* 定义颜色属性 */ } Copy after login 上述两段代码所呈现的效果是一样的,但是,第二种书写方式的可读性更高。需要注意的是,属性的值和单位之间是不允许出现空格的,否则浏览器解析时会出错。例如,下面这行代码就是不正确的。 h2{ font-size:20 px;} /* 20和单位px之间有空格 */Copy after login 2.2.4 引入CSS样式 CSS使用非常灵活,即可以嵌入在HTML文档中,也可以是一个单独的文件,如果是单独的文件,则必须以.css为扩展名。CSS和HTML的结合3种常用方式: (1)行内样式 行内样式,是通过标签的style属性来设置元素的样式。 小灰灰 行内样式通过标签的属性来控制样式,这样并没有做到结构与表现(HTML展示结构、CSS显示效果)相分离,所有一般很少使用。学习阶段有时候为了快速编程,偶尔使用。 (2)内部样式 内部样式又称为内嵌式,是将CSS代码集中卸载HTML文档的头部标签体中,并且使用标签定义。</p> <p> 给当前html文件中的多个标签设置样式。</p> <p> 在html的<head>标签中使用<style>标签来定义CSS</p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre><!-- 方式2:内部样式 background-color :表示背景色 --> <style type="text/css"> body{ background-color: #ddd; } Copy after login (3)外部样式 外部样式又称为链入式,是将所有的样式放在一个或多个以.css为扩展名的外部样式表文件中,通过标签将样式连接到HTML文档中。 Copy after login 链入式最大的好处是同一个CSS样式表可以被不同的HTML页面链接使用,同时一个HTML页面也可以通过多个标记链接多个CSS样式表。 2.3 选择器 想要将CSS样式应用于特定的HTML元素,首先需要找到该目标元素。在CSS中,执行这一任务的样式规则不符被称为选择器,本小节将对CSS基础选择器进行详细地讲解,具体如下: 2.3.1 元素选择器 标记选择器是指用HTML标记名称作为选择器,按标记名称分类,为页面中某一类标记指定统一的CSS样式。其基本语法格式如下: 标记名{属性1:属性值1; 属性2:属性值2; 属性3:属性值3; }Copy after login 该语法中,所有的HTML标记名都可以作为标记选择器,例如body、h2、p、strong等。用标记选择器定义的样式对页面中该类型的所有标记都有效 例如: h2{ color: #F00; font-size: 50px; } 超链接 小灰灰一号 小灰灰二号 小灰灰三号 Copy after login 标记选择器最大的优点是能快速为页面中同类型的标记统一样式,同时这也是他的缺点,不能设计差异化样式 2.3.2 ID选择器 id选择器使用"#"进行标识,后面紧跟id名,其基本语法格式如下: #id名{ 属性1:属性值1; 属性2:属性值2; 属性3:属性值3; }Copy after login 该语法中,id名即为HTML元素的id属性值,大多数HTML元素都可以定义id属性,元素的id值是唯一的,只能对应于文档中某一个具体的元素。 例如: #demo1{ color: #0f0; } 超链接 小灰灰 Copy after login 2.3.3 类选择器 类选择器使用“.”(英文点号)进行标识,后面紧跟类名,其基本语法格式如下: .类名{ 属性1:属性值1; 属性2:属性值2; 属性3:属性值3; }Copy after login 该语法中,id名即为HTML元素的class属性值,大多数HTML元素都可以定义class属性。类选择器最大的优势是可以为元素对象定义单独或相同的样式。 例如: .myClass{ font-size: 25px; } 超链接 小灰灰 Copy after login 类选择器的高级用法:给指定的标签设置class样式 标签.类名 { 属性1:属性值1; 属性2:属性值2; 属性3:属性值3; }Copy after login 2.3.4 扩展:属性选择器 属性选择器,在标签后面是有中括号标记,其基本语法格式如下: 标签名 [标签属性='标签属性值'] {属性1:属性值1; 属性2:属性值2; 属性3:属性值3;}Copy after login 该选择器,是对"元素选择器"的扩展,对一组标签进一步过滤。 例如: input[type="text"]{ background-color: yellow; } input[type="password"]{ background-color: green; } 超链接 Copy after login 2.3.5 扩展:包含选择器 包含选择器,两个标签之间使用空格,给指定父标签的后代标签设置样式,可以方便在区域内编写样式。 父标签 后代标签{ 属性1:属性值1; 属性2:属性值2; 属性3:属性值3; }Copy after login 该选择器,是对"元素选择器"的扩展,对一个标签内部所有后代标签进行过滤。 #d1 div{ color: red; } 超链接 小灰灰1 小灰灰2 Copy after login 2.4 CSS的样式: 2.4.1 边框和尺寸:border、width、height border:设置边框的样式 格式:宽度 样式 颜色 例如:style="border:1px solid #f00" ,1像素实边红色。 样式取值:solid 实线,none 无边, double 双线 等 width、height:用于设置标签的宽度、高度。 div{ border: 1px solid #000; /* 1像素,实边,黑色*/ width:200px; height:200px; } 超链接 小灰灰 Copy after login 2.4.2 布局:float、clear 通常默认的排版方式,将页面中的元素从上到下一一罗列,而实际开发中,需要左右方式进行排版,就需要使用浮动 选择器{float:属性值} 常用属性值: left:元素向左浮动 right:元素向右浮动 none:元素不浮动(默认值)Copy after login 由于浮动元素不再占用原文档流的位置,所以它会对页面中其他元素的排版产生影响。如果要避免影响,需要使用clear属性进行清除浮动。 选择器{clear:属性值;} 常用属性值: left:不允许左侧有浮动元素(清除左侧浮动的影响) right:不允许右侧有浮动元素(清除右侧浮动的影响) both:同时清除左右两侧浮动的影响Copy after login 例如: 超链接 区域1-1 区域1-2 区域2-1 区域2-2 区域3-1 区域3-2 区域3-3 2.4.3 转换:display HTML提供丰富的标签,这些标签被定义成了不同的类型,一般分为:块标签和行内标签。 块标签:以区域块方式出现。每个块标签独占一整行或多整行。 常见的块元素:、、等 行内元素:不必再新一行开始,同时也不强迫其他元素在新的一行显示。 常见的行内元素:、等 在开发中,希望行内元素具有块元素的特性,需要使用display进行转换 选择器{ display:属性值} 常用的属性值: inline:此元素将显示为行内元素(行内元素默认的display属性值) block:此元素将显示为块元素(块元素默认的display属性值) inline-block:将对象呈递为内联对象,但是对象的内容作为块对象呈递。 none:此元素将被隐藏,不显示,也不占用页面空间。Copy after login 例如: span{ border: 1px solid #000; width: 100px; height: 40px; } 超链接 显示1-1 显示1-2 显示2-1 显示2-2 Copy after login 2.4.4 字体:color、font-size color:颜色,字体颜色Copy after login 例如: 超链接 点击 点击 点击 点击 Copy after login 2.4.5 背景色:background-color 点击 点击 点击 点击 Copy after login 2.5 CSS的盒子模型 2.5.1 什么是盒子模型 CSS框模型(Box Model)规定了元素框处理元素内容、内边距、边框和外边距的方式。 2.5.2 内边距:padding 例如,如果您希望所有h2元素的个边都有10px的内边距,只需要这样: h2{ padding:10px;}Copy after login 还可以按照上、右、下、左的顺序分别设置各边的内边距,各边均可以使用不同的单位或百分比值: h2 {padding:10px 0.25em 2ex 20%}Copy after login 单边内边距属性 也通过使用下面四个单独的属性,分别设置上、右、下、左内边距: padding-top padding-right padding-bottom padding-left 2.5.3 边框:border border-top-style border-right-style border-bottom-style border-left-style 2.5.4 外边距:margin margin-top margin-right margin-bottom margin-left