Using CSS to create colorful text

Source: Internet
Author: User
Css

Effect:

Top half of the text

The lower part of the text

The effect of two groups of words coincidence

Principle:

Two identical and different colors of the text together, by adding clip attributes, so that the above and below the text is cut position different, resulting in two different colors.

Clip: Excerpt from the Su Shen light rain CSS Manual

Clip:auto | Rect (number number number number)

Parameters:

Auto: Object No clipping

Rect (number number number number):

Provides four offset values computed from the upper-left corner of the object (0,0) based on the upper-right-left order, where any of the values can be replaced with auto, which means that this edge does not cut

Description

Retrieves or sets the viewable area of an object. The parts outside the area are transparent.

The position value must be set to absolute, which can be used by this property.

Test environment:

Firefox1.5, IE6.0, Opera8.5, IE5.01 Green Edition passed.

Css

. textbottom {

Color: #333333;

Position:absolute;

Left:3em;

Top:1em;

font:26px Century gothic,arial, Helvetica, Sans-serif;

Clip:rect (18px Auto Auto Auto);

}

. texttop {

Color: #CC0000;

Position:absolute;

Left:3em;

Top:1em;

font:26px Century gothic,arial, Helvetica, Sans-serif;

Clip:rect (0 auto 18px 0);

}

. container {

Width:28em;

Height:5em;

Margin:1em Auto;

position:relative;

Background: #F6F6F6;

}

Xhtml

<div class= "Container" >

<a href= "#" class= "Texttop" >cascading Style Sheet </a>

<a href= "#" class= "Textbottom" >cascading Style Sheet </a>

</div>



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.