Tag: CSS3
CSS3 new attribute skills
1. Parity attributes:
/*odd*/
ul li:nth-child (odd){
background-color: green;
}
< em id="__mceDel" style="font-family:'Courier New'; font-size: 12px;"> /*even*/
em>< em id="__mceDel">ul li:nth-child(even){< /em>
< em id="__mceDel">background-color: red;
}
2.
Front-end development CSS3 – text style and boxes and patterns
Bloggers don’t talk nonsense, and directly introduce the attributes and attribute values commonly used in CSS; attributes and values only need to be passed through, the structure of the page st
CSS3 User-SELECT Attribute Set whether the text content can be selected
CSS3 provides a user-select attribute to set or retrieve whether the user is allowed to select text.
Syntax
user-select:none | text | all | element.
Default value:text.
Appl
CSS3 linear gradient (linear-gradient)
CSS3 Gradient is divided into linear-gradient and radial-gradient. Today, we mainly analyze the specific usage of linear gradients. In order to better apply CSS3 Gradient, we need to first understa
CSS3 Animation of the five situations of Bessel Curve Cubic-Bezier, CSS3
When you start to do css3 animation, it becomes indispensable to understand the Bezier curve. “Bezier curve” was invented by French mathematician Pierre Bézier, which laid the foundation for comput
CSS3 makes rotating Taiji map
Effect picture The code above: ———————- ————————————–
Body { Background-color:# aaa;
Width: 400px;
div> border-r
CSS3 animation
.btn-shake-hand{< br /> -webkit-animation: fingerHandle 1s ease infinite both;
animation: fingerHandle 1s ease infinite both;
}
.btn-shake-hot{
-webkit-animation: free_download 0.5s linear alter
IFRAME CSS3 zoom problem on iPad Safari (iOS 5.0.1)
I need to expand an iframe to make it bigger (I can’t control the source code of the iframe content). I tried to achieve it through the -webkit-transform: scale(1.3) CSS property.
The content