


Object-oriented programming of XHTML and CSS_HTML/Xhtml_Web page production
If XHTML and CSS can be object-oriented. . The sun should be rising in the north. However, everything should be viewed with an OO mentality, and we can barely make up the numbers. In fact, someone proposed OO-style as early as 2000, but it can no longer be found.
How to do it? Now everyone knows that CSS can be written like this:
.G_G { /* xxxxxx */ }
We can think of it as a prototype, or class, -__-b seems to be a class, and then it needs to be "instantiated" in HTML Object, for example:
This element will use the corresponding definition of CSS, but the corresponding class is not enough, because our page may apply this class in many places. In order to handle the relationship of "Private", put Change the code just now to:
In this case, the element with ID aaoao will apply the definition of
.G_G
class, and you can use selectors like #aoao{}
to enter the definition of private effects, which will not affect the public .G_G
🎜>This class, at the same time, the priority defined by #aoao will be higher than .G_G, which is in line with the common sense that private definitions have higher priority than public definitions^^.
Since I use ID as a unique thing, reusing such privately defined things becomes a problem (an ID can only appear once on a page, I don’t know who said that, but it is truth). What if we want to achieve privatization of many of the same things? Then we must implement "Polymorphism". Dig haha. Change the code again:
One is "G_G" and the other is "o_O", but if we use
.o_O{}
, we can also define the element. If the CSS is like this:
.G_G {width:100%} .o_O {color:#123456} The
elements will all be defined, and since the definitions do not overlap, they will all be applied. If the code is like this, I don't know if it will be easier to understand.
.layout{width:100%} .color{color:#123456}
Next, we need to implement "Encapsulation". You should use the child selector frequently. Change the code:
Although both
.bendan{}
and .G_G .bendan{}
can be defined, the latter can only be applied to elements with class "G_G". We can simply understand .bendan{}
as a global definition and .G_G .bendan{}
as a local definition. , this will be beneficial to the modularization of our XHTML and CSS. ^^The legendary "encapsulation" appeared, and then it continued.
Such code can produce countless changes. If you still don’t understand it, start from scratch. ^^
Actually, these are still far from true object-oriented. I am just learning the headlines, but I can use it to understand the application of ID and class.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to remove duplicate values from PHP array using regular expressions: Use regular expression /(.*)(.+)/i to match and replace duplicates. Iterate through the array elements and check for matches using preg_match. If it matches, skip the value; otherwise, add it to a new array with no duplicate values.

Here's how to convert a MySQL query result array into an object: Create an empty object array. Loop through the resulting array and create a new object for each row. Use a foreach loop to assign the key-value pairs of each row to the corresponding properties of the new object. Adds a new object to the object array. Close the database connection.

In PHP, an array is an ordered sequence, and elements are accessed by index; an object is an entity with properties and methods, created through the new keyword. Array access is via index, object access is via properties/methods. Array values are passed and object references are passed.

In C++, there are three points to note when a function returns an object: The life cycle of the object is managed by the caller to prevent memory leaks. Avoid dangling pointers and ensure the object remains valid after the function returns by dynamically allocating memory or returning the object itself. The compiler may optimize copy generation of the returned object to improve performance, but if the object is passed by value semantics, no copy generation is required.

1. Programming can be used to develop various software and applications, including websites, mobile applications, games, and data analysis tools. Its application fields are very wide, covering almost all industries, including scientific research, health care, finance, education, entertainment, etc. 2. Learning programming can help us improve our problem-solving skills and logical thinking skills. During programming, we need to analyze and understand problems, find solutions, and translate them into code. This way of thinking can cultivate our analytical and abstract abilities and improve our ability to solve practical problems.

PHP functions can encapsulate data into a custom structure by returning an object using a return statement followed by an object instance. Syntax: functionget_object():object{}. This allows creating objects with custom properties and methods and processing data in the form of objects.

Python is an ideal programming introduction language for beginners through its ease of learning and powerful features. Its basics include: Variables: used to store data (numbers, strings, lists, etc.). Data type: Defines the type of data in the variable (integer, floating point, etc.). Operators: used for mathematical operations and comparisons. Control flow: Control the flow of code execution (conditional statements, loops).

Pythonempowersbeginnersinproblem-solving.Itsuser-friendlysyntax,extensivelibrary,andfeaturessuchasvariables,conditionalstatements,andloopsenableefficientcodedevelopment.Frommanagingdatatocontrollingprogramflowandperformingrepetitivetasks,Pythonprovid
