English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
CSS3ist die neueste Entwicklung der Sprachübersetzungsschicht, die darauf abzielt, CSS zu erweitern2.1Es bringt viele erwartete Neuerungen mit sich, wie zum Beispiel abgerundete Ecken, Schatten, Verlaufen, Übergänge oder Animationen, sowie neue Layouts, wie zum Beispiel mehrspaltige Anordnungen, flexible Boxen oder Gitterlayout. Die Eigenschaften der Experimente haben einen Herstellerpräfix und sollten in Produktionsumgebungen vermieden werden oder besonders vorsichtig behandelt werden, da ihre Syntax und Semantik möglicherweise in der Zukunft geändert werden.
CSS3new features, such as rounded corners, graphical borders, block shadows and text shadows, transparency effects using RGBA, gradient effects, using @Font-Face implements custom fonts, multiple background images, transformation of text or images (rotation, scaling, skewing, moving), multi-column layout, media queries, etc.
CSS is used to control the style and layout of web pages.
CSS3 is the latest CSS standard.
This tutorial explains CSS3 new features.
CSS3 Animation example, demonstrating an animation with a red background and a green background.
!DOCTYPE html> <html> <head> <style> div { width: 100px; height: 100px; background: red; -webkit-animation: myfirst 6s; /* Chrome, Safari, Opera */ animation: myfirst 5s; } /* Chrome, Safari, Opera */ @-webkit-keyframes myfirst { from {background: red;} to {background: green;} } @keyframes myfirst { from {background: red;} to {background: green;} } </style> </head> <body> <p><b>Attention:</b> IE 9 And earlier versions do not support CSS3 Animation properties. </p> <div></div> </body> </html>Test and see ‹/›
On the Basic Tutorial website, we provide a complete CSS3 Reference manual, including the syntax, examples, and browser support information for all attributes and element selectors.