Home> Web design tutorial
All Dreamweaver tutorial Javascript tutorial HTML tutorial CSS tutorial Experience and skills DHTML tutorial Web effects WEB standardization
Web design tutorial
  • Methods of primitives

    Methods of primitives

    JavaScript allows us to work with primitives (strings, numbers, etc.) as if they were objects. They also provide methods to call as such.
    2024-12-27
  • CSS @Rules (detailed)

    CSS @Rules (detailed)

    CSS @ rules (details) contain two grammatical rules in CSS: ordinary rules: composed of selectors, attributes and values. In previous studies, we mainly used this kind of rules; @ rules: starting with @ followed by The formal composition of keywords, also
    2024-12-27
  • Compatibility of global regular expressions in IE/Firefox

    Compatibility of global regular expressions in IE/Firefox

    There is such a piece of code: the result of if (RegExp.test(num)) is TRUE every time in IE, but in Fire Fox, if it is True the first time, it must be False the second time, and appears alternately thereafter. Let’s take a look at some past solutions:
    2024-12-26
  • Comprehensive analysis of CSS media queries (@media)

    Comprehensive analysis of CSS media queries (@media)

    Comprehensive analysis of CSS media query (@media) With the rapid popularity of mobile devices, users no longer just browse web content through traditional computer systems. More and more users are beginning to use smartphones, tablets or other devices of
    2024-12-26
  • Numbers

    Numbers

    Regular numbers in JavaScript are stored in 64-bit format IEEE-754, also known as “double precision floating point numbers”. These are numbers that we’re using most of the time, and we’ll talk about them in this chapter.
    2024-12-26
  • CSS changes box model (box-sizing)

    CSS changes box model (box-sizing)

    CSS changes the box model (box-sizing) The box-sizing attribute was introduced in CSS3. Some people explain that it can specify whether the width and height values ​​specified with the width attribute and height attribute respectively include the padding
    2024-12-26
  • HTML inline elements and block-level elements

    HTML inline elements and block-level elements

    HTML inline elements and block-level elements HTML tags (elements) can be divided into two categories, namely block-level elements and inline elements (also called inline elements). 1. Inline element (inline) 1. The concept of inline element Inline elemen
    2024-12-26
  • Strings

    Strings

    In JavaScript, the textual data is stored as strings. There is no separate type for a single character.
    2024-12-26
  • How to introduce CSS files into HTML

    How to introduce CSS files into HTML

    How to introduce CSS files into HTML HTML can only present some information and has very limited performance capabilities. It needs to be used in conjunction with CSS to make the page more beautiful. In a web page, all style code can be moved out of the H
    2024-12-26
  • Arrays

    Arrays

    Objects allow you to store keyed collections of values. That’s fine.
    2024-12-26
  • HTML text formatting

    HTML text formatting

    HTML text formatting When we use HTML tags, we must clearly know that in addition to certain semantics, tags also have default styles, such as <b>(bold), <em>(italic), etc. We do not need to use C to use these tags...</em></b>
    2024-12-26
  • Summary of Web page layout methods

    Summary of Web page layout methods

    1. Element drift removes an element from the page flow and drifts it in a certain direction. Other block elements will be placed under this element. When inline elements are injected into other block elements, the inline elements will surround this elemen
    2024-12-26
  • Analysis of website log 200 0 64 status code (protocol sub-status)

    Analysis of website log 200 0 64 status code (protocol sub-status)

    A few days ago, I took over the new site and observed the logs and found that only the home page returned the 200 0 64 status code, and other pages returned to normal. First of all, the 200 0 64 status code is certainly unreasonable. This is understandabl
    2024-12-26
  • Sample code for implementing editable tables using html table+css

    Sample code for implementing editable tables using html table+css

    To implement an editable HTML table, you can use JavaScript and the HTML5 contenteditable attribute.<!DOCTYPE html>
    2024-12-26
  • Array methods

    Array methods

    Arrays provide a lot of methods. To make things easier, in this chapter, they are split into groups.
    2024-12-26