Home Web Front-end HTML Tutorial Basic knowledge of HTML. Detailed introduction to css style sheets and style attributes

Basic knowledge of HTML. Detailed introduction to css style sheets and style attributes

Jan 22, 2018 am 10:43 AM
html basic knowledge

This time I will bring you the basic knowledge of HTML. A detailed introduction to css style sheets and style attributes. What are the precautions for using css style sheets and style attributes? The following are Let’s take a look at practical cases.

1.

position: fixed

Lock position (position relative to the browser), such as the pop-up window in the lower right corner of some websites.

2. Position: absolute

Absolute position:

1. The outer layer does not have position: absolute (or relative); then p is positioned relative to the browser, as shown in the figure below b (50 pixels from the right border of the browser and 20 pixels from the bottom border).

2. The outer layer has position: absolute (or relative); then p is positioned relative to the outer border, as shown in the figure below (50 pixels from the right border of d, 20 pixels from the lower border of d) .

3. Position: relative

Relative position:

As shown below, it is fixed relative to a certain position of p that contains this p. If the outer layer does not contain it, the relative position is fixed relative to the browser.

4. Layering (

z-index)

Layering in the z-axis direction can be understood as dividing into a pile of paper. The higher the number of layers, the higher it is.

In the relative example above, we see that aa covers a. This is because the display level of the code written later is higher. So how can a cover aa without changing the code order? . As follows:

5. Float: left, right

There is no need to specify the position (left, top) for Left and right, it is directly relative to the browser. If the outer is wrapped, the upper left or upper right of the position excluding one line relative to the outer p is displayed.

Additional: 1.

overflow:hidden;    //超出部分隐藏;scroll,显示出滚动条;
<p >
</p>   //截断流
Copy after login

2. Cursor: pointer The shape when the mouse points to it;

3. Translucent effect:

    <p class="box">透明区域<p>
             在样式表中的代码为:
             .box
             {
             opacity:0.5; -moz-opacity:0.5 ; filter:alpha(opacity=50)
             }
Copy after login
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
<title>无标题文档</title>  
<style type="text/css">  
.a   
{   
    border:5px solid blue;   
    width:1000px;   
    height:100px;   
    margin:10px;   
    left:150px;   
    top:80px;   
    position:absolute;}   
.b   
{   
    border:5px solid blue;   
    width:240px;   
    height:200px;   
    margin:10px;   
    left:150px;   
    top:200px;   
    position:absolute;}   
.c   
{   
    border:5px solid blue;   
    width:740px;   
    height:300px;   
    margin:10px;   
    left:410px;   
    top:200px;   
    position:absolute;}   
.d   
{   
    border:5px solid blue;   
    width:740px;   
    height:200px;   
    margin:10px;   
    left:410px;   
    top:520px;   
    position:absolute;}   
.e   
{   
    border:5px solid blue;   
    width:240px;   
    height:1500px;   
    margin:10px;   
    left:150px;   
    top:420px;   
    position:absolute;}   
.f   
{   
    border:5px solid blue;   
    width:240px;   
    height:150px;   
    margin:10px;   
    left:150px;   
    top:1940px;   
    position:absolute;}   
.g   
{   
    border:5px solid blue;   
    width:740px;   
    height:1350px;   
    margin:10px;   
    left:410px;   
    top:740px;   
    position:absolute;}       
.h   
{   
    border:5px solid blue;   
    width:1000px;   
    height:200px;   
    margin:10px;   
    left:150px;   
    top:2110px;   
    position:absolute;}   
.i   
{   
    border:5px solid blue;   
    width:1000px;   
    height:200px;   
    margin:10px;   
    left:150px;   
    top:2330px;   
    position:absolute;}   
</style>  
</head>  
  
<body bgcolor="#F0F0F0">  
<p class="a">a</p>  
<p class="b">b</p>  
<p class="c">c</p>  
<p class="d">d</p>  
<p class="e">e</p>  
<p class="f">f</p>  
<p class="g">g</p>  
<p class="h">h</p>  
<p class="i">i</p>  
</body>  
</html>
Copy after login

Believe it After reading these cases, you have mastered the methods. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Related reading:

Detailed explanation of HTML Form form elements

Detailed explanation of examples of HTML text formatting

Special characters of html-css3 content: How to use "special symbols"

The above is the detailed content of Basic knowledge of HTML. Detailed introduction to css style sheets and style attributes. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

See all articles