CSS interlaced color changing tutorial
We know that in HTML, the color difference layout effect is required before the ul and li lists. So how to use css to change the color of ul li on alternate lines? Today I will give you an example to demonstrate.
In order not to affect the program calls and make the program simple, use the ul li list layout to achieve the above interval background color layout. At the same time, the mouse slides and hovers over the li to change the background color. There are usually two methods.
The first method: background picture, cut a narrow vertical strip of background picture material, use the background picture as the ul background, and let the background picture be used as the ul background and then tiled up, down, left, and right, you can easily achieve the spacing effect.
Second type: Use JQ special effects to achieve this. Use JS special effects to achieve the effect of spacing the background color and changing the background color when the mouse passes over it. There are many special effects codes and need to introduce JS files and codes.
Next, we will introduce these two methods through graphic and text + online demonstration examples.
Background image material realizes the background interval color of the li list
This DIV+CSS case is a recommended method, which is simple and convenient, saves code, and can also achieve the background color change effect when the mouse is moved above the li.
The operation method is as follows:
Cut out a li with a width of 1 pixel and a height of exactly two colors as the picture material
HTML corresponding source code
<ul class="licss"> <li><a href="http://www.php.cn/">欢迎您访问</a></li> <li><a href="http://www.php.cn/">欢迎您访问</a></li> <li><a href="http://www.php.cn/">欢迎您访问</a></li> <li><a href="http://www.php.cn/">欢迎您访问</a></li> <li><a href="http://www.php.cn/">欢迎您访问</a></li> </ul>
The above is the layout content of ul li. The key is to see the writing and explanation of the CSS code below.
4. Corresponding CSS code
ul.licss{ margin:0 auto; background:url(ul-bg.gif); width:400px; text-align:left}
/* The background only introduces the image and can be tiled in full screen within the object without setting other parameters*/
ul.licss li{ width:100% ; text-indent:10px; height:34px; line-height:34px}
/* The height needs to be calculated and has a certain relationship with the layout image*/
ul.licss li:hover{ background:#EBEBEB}
/* In order to have a dynamic background color change, set the hover pseudo-class for li*/
Here is a separate pair ul sets a class. Explanation: In the actual layout, ul li layout will be used in many places. In order to distinguish the use of ul in other places, the class here is named separately.
CSS extension: If you want to change the color when the mouse moves over li, you can set CSS ul.licss li:hover{set background color}.
Flexible use: According to examples, you can extend the ul li layout skills to non-li layouts to implement the background interval color of the list type layout.
# I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!
Related reading:
HTML5 video Audio implementation steps
The above is the detailed content of CSS interlaced color changing tutorial. For more information, please follow other related articles on the PHP Chinese website!

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

In Vue.js, the placeholder attribute specifies the placeholder text of the input element, which is displayed when the user has not entered content, provides input tips or examples, and improves form accessibility. Its usage is to set the placeholder attribute on the input element and customize the appearance using CSS. Best practices include being relevant to the input, being short and clear, avoiding default text, and considering accessibility.

After rain in summer, you can often see a beautiful and magical special weather scene - rainbow. This is also a rare scene that can be encountered in photography, and it is very photogenic. There are several conditions for a rainbow to appear: first, there are enough water droplets in the air, and second, the sun shines at a low angle. Therefore, it is easiest to see a rainbow in the afternoon after the rain has cleared up. However, the formation of a rainbow is greatly affected by weather, light and other conditions, so it generally only lasts for a short period of time, and the best viewing and shooting time is even shorter. So when you encounter a rainbow, how can you properly record it and photograph it with quality? 1. Look for rainbows. In addition to the conditions mentioned above, rainbows usually appear in the direction of sunlight, that is, if the sun shines from west to east, rainbows are more likely to appear in the east.

Nodes are entities in the JavaScript DOM that represent HTML elements. They represent a specific element in the page and can be used to access and manipulate that element. Common node types include element nodes, text nodes, comment nodes, and document nodes. Through DOM methods such as getElementById(), you can access nodes and operate on them, including modifying properties, adding/removing child nodes, inserting/replacing nodes, and cloning nodes. Node traversal helps navigate within the DOM structure. Nodes are useful for dynamically creating page content, event handling, animation, and data binding.

Browser plug-ins are usually written in the following languages: Front-end languages: JavaScript, HTML, CSS Back-end languages: C++, Rust, WebAssembly Other languages: Python, Java

The expansion of the virtual market is inseparable from the circulation of virtual currency, and naturally it is also inseparable from the issue of virtual currency transfers. A common transfer error is the address copy error, and another error is the chain selection error. The transfer of virtual currency to the wrong chain is still a thorny problem, but due to the inexperience of transfer operations, novices often transfer the wrong chain. So how to recover the wrong chain of virtual currency? The wrong link can be retrieved through a third-party platform, but it may not be successful. Next, the editor will tell you in detail to help you better take care of your virtual assets. How to retrieve the wrong chain of virtual currency? The process of retrieving virtual currency transferred to the wrong chain may be complicated and challenging, but by confirming the transfer details, contacting the exchange or wallet provider, importing the private key to a compatible wallet, and using the cross-chain bridge tool

1. First, open the settings icon in the lower left corner and click the settings option. 2. Then, find the CSS column in the jumped window. 3. Finally, change the drop-down option in the unknownproperties menu to the error button.

Yes, Less files in Vue can introduce data through CSS variables and Less mixins: create a JSON file containing data. Import JSON files using the @import rule. Access JSON data using CSS variables or Less mixins.

Style isolation in Vue components can be achieved in four ways: Use scoped styles to create isolated scopes. Use CSS Modules to generate CSS files with unique class names. Organize class names using BEM conventions to maintain modularity and reusability. In rare cases, it is possible to inject styles directly into the component, but this is not recommended.
