CSS3 Modules
CSS3 has been split into "modules". It contains the "old CSS specification" (which has been split into smaller pieces). In addition, new modules are added.
Some of the most important CSS3 modules are:
- Selectors
- Box Model
- Backgrounds and Borders
- Image Values and Replaced Content
- Text Effects
- 2D/3D Transformations
- Animations
- Multiple Column Layout
- User Interface
click here for coading of CSS
Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language.CSS3 is a latest standard of css earlier versions(CSS2).The main difference between css2 and css3 is follows
- Media Queries
- Namespaces
- Selectors Level 3
- Color
CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.A simple syntax of rounded corners is as follows −
#rcorners7 { border-radius: 60px/15px; background: #FF0000; padding: 20px; width: 200px; height: 150px; }The following table shows the possible values for Rounded corners as follows −
| Values | Description |
|---|---|
| border-radius | Use this element for setting four boarder radius property |
| border-top-left-radius | Use this element for setting the boarder of top left corner |
| border-top-right-radius | Use this element for setting the boarder of top right corner |
| border-bottom-right-radius | Use this element for setting the boarder of bottom right corner |
| border-bottom-left-radius | Use this element for setting the boarder of bottom left corner |
Example
This property can have three values. The following example uses both the values −<html> <head> <style> #rcorners1 { border-radius: 25px; background: #8AC007; padding: 20px; width: 200px; height: 150px; } #rcorners2 { border-radius: 25px; border: 2px solid #8AC007; padding: 20px; width: 200px; height: 150px; } #rcorners3 { border-radius: 25px; background: url(paper.gif); background-position: left top; background-repeat: repeat; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <p id="rcorners1">Rounded corners!</p> <p id="rcorners2">Rounded corners!</p> <p id="rcorners3">Rounded corners!</p> </body> </html>It will produce the following result −
click here for HTML tutorial
What is Multimedia?
Multimedia comes in many different formats. It can be almost anything you can hear or see.Examples: Images, music, sound, videos, records, films, animations, and more.
Web pages often contain multimedia elements of different types and formats.
In this chapter you will learn about the different multimedia formats.
Browser Support
The first web browsers had support for text only, limited to a single font in a single color.Later came browsers with support for colors and fonts, and images!
Audio, video, and animation have been handled differently by the major browsers. Different formats have been supported, and some formats require extra helper programs (plug-ins) to work.
Hopefully this will become history. HTML5 multimedia promises an easier future for multimedia.
Multimedia Formats
Multimedia elements (like audio or video) are stored in media files.The most common way to discover the type of a file, is to look at the file extension.
Multimedia files have formats and different extensions like: .swf, .wav, .mp3, .mp4, .mpg, .wmv, and .avi.
HTML Video Example

No comments:
Post a Comment