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
  • Table sets background image, cannot display 100% solution

    Table sets background image, cannot display 100% solution

    Comment: The table sets the background image, and cannot be displayed 100% is a headache. Fortunately, I found a solution online. Friends in need can refer to it and find the following situation in development: (1) If the file is stored in the form of a .
    2025-05-22
  • Detailed explanation of the support of the Unicode character set in JavaScript language

    Detailed explanation of the support of the Unicode character set in JavaScript language

    Last month, I made a sharing, detailing the Unicode character set and the support of the JavaScript language for it. The following is the speech shared this time. 1. What is Unicode? Unicode originated from a very simple idea: include all characters in th
    2025-05-22
  • Introduction to array operations in JavaScript

    Introduction to array operations in JavaScript

    Array objects in JavaScript come with some methods, and you can use these methods to operate on arrays. join() can use the join() method to merge members in an array into a string: the code is copied as follows: var o = [1,2,3];console.log(o.joi
    2025-05-22
  • html5 Learn simple color picker

    html5 Learn simple color picker

    Comment: Use canvas' getImageData to get the color rgba value for short and rough time. Below is the source code that requires the browser to support html5<html><head></head><body>
    2025-05-22
  • A solution that is invalid when defining multiple class attributes in HTML

    A solution that is invalid when defining multiple class attributes in HTML

    In the process of writing html, we often define multiple values ​​for the class attribute, but we often find that the value we define is invalid! ! ! When I encountered this situation before, I rewritten it directly, or directly set the css attribute with
    2025-05-22
  • HTML blockquote tag usage and beautification

    HTML blockquote tag usage and beautification

    Blockquote definition and usage<blockquote> Tag definition block reference.<blockquote> and</blockquote> All text between them is separated from the regular text, often indented on the left and right sides (added margins), and sometimes italics are used.
    2025-05-22
  • Methods called as parameters in javascript

    Methods called as parameters in javascript

    This article describes the method of calling functions as parameters in JavaScript. Share it for your reference. The specific analysis is as follows: Let’s take a look at the example first: function Map(){var obj = {}; this.put = function(key, value){obj[
    2025-05-22
  • Debugging HTML, JavaScript and CSS in Chrome

    Debugging HTML, JavaScript and CSS in Chrome

    Article introduction of Wulin.com (www.vevb.com): Several Chrome extensions that website developers should install. Chrome developer tools are very useful for debugging HTML, JavaScript and CSS in Chrome. If you are writing a for Chrome Web Store
    2025-05-22
  • html5-Canvas can draw various graphics in the web

    html5-Canvas can draw various graphics in the web

    Comment: In html5, I think the most important thing is to introduce Canvas, so that we can draw various graphics in the web, and Canvas is a pixel-based drawing. Canvas is an html node equivalent to a painting board. We must use js to draw. In html5, I th
    2025-05-22
  • Web page creation TD can also overflow and hide display

    Web page creation TD can also overflow and hide display

    Perhaps when I get this name in this article, someone will ask: Why are you still following tables? That's already outdated... Hurry up Xhtml...div is good...ul is good...ol is good...dl is good...dl is good...this is finished, I don't know what e
    2025-05-22
  • Commonly used structure tags for XHTML

    Commonly used structure tags for XHTML

    Structure body, head, html, title text abbr, acronym, address, blockquote, br, cite, code, dfn, div, em, h1, h2, h3, h4, h5, h6, kb
    2025-05-22
  • Method of implementing multi-level linkage drop-down menu in javascript

    Method of implementing multi-level linkage drop-down menu in javascript

    This article describes the method of implementing multi-level linkage drop-down menus in JavaScript. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows: <SCRIPT LANGUAGE="JavaScript"><!-- Beginvar
    2025-05-22
  • Markup Language - Title

    Markup Language - Title

    Click here to return to the Wulin.com HTML tutorial column. Above: Chapter1 List Original Source Standardized Design Solutions - Markup Language and Style HandbookPart 1:
    2025-05-22
  • 10 Most Frequent HTML Tag Errors

    10 Most Frequent HTML Tag Errors

    It's best to start paying attention, because html police will walk through your code and pick out all your tags that have no semantics. This list contains 10 most frequently made html tag errors. Note them down to help us avoid making this common mist
    2025-05-21
  • JavaScript gets a random number of four digits or letters

    JavaScript gets a random number of four digits or letters

    This chapter introduces how to implement the simple four-bit random number function through code examples. A relatively simple way to implement it is to randomly extract four non-repetitive characters from numbers and letters. The code example is as follo
    2025-05-21