CSS

Cascading Style Sheets (CSS) is a simple language for adding style (e.g., fonts, colors, spacing) to Web/HTML documents. CSS help to describes how HTML document elements should be displayed.

Subjects

Latest Asked Question

45 Likes
A : The  opacity  property can take a value from 0.0 - 1.0. The lower value, the more transparent: Example: img {     opacity: 0.5;     filter: alpha(opacity=50); /* For IE8 and earlier */ } Note:  IE8 and earlier use  filter:alpha(opacity=x) . The x can take a value from 0 - 100. A lower value makes the element more transparent.
45 Likes
A : The CSS box-shadow property applies shadow to elements.In its simplest use, you only specify the horizontal shadow and the vertical shadow:Example:div { box-shadow: 10px 10px grey; }
45 Likes
45 Likes
45 Likes
45 Likes
45 Likes
45 Likes
A : hi have a look  width: 185px; -webkit-transform: rotate(-25deg); -webkit-transform-origin: 0% 0%; font-size: 11px; View full example:https://myinboxhub.co.in/topic/CSS/set-rotation-point-in-css3  
45 Likes
CSS Related Topic's