Found 8591 Articles for Front End Technology

Fade Out Right Animation Effect with CSS

Samual Sam
Updated on 16-Mar-2020 07:43:47

154 Views

To implement Fade Out Right Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes fadeOutRight {             0% {                opacity: 1;                -webkit-transform: translateX(0);             }             100% {                opacity: 0;                -webkit-transform: translateX(20px);             }          }          @keyframes fadeOutRight {             0% {                opacity: 1;                transform: translateX(0);             }             100% {                opacity: 0;                transform: translateX(20px);             }          }          .fadeOutRight {             -webkit-animation-name: fadeOutRight;             animation-name: fadeOutRight;          }          animation-name: fadeOutLeft;                               Reload page                function myFunction() {             location.reload();          }          

CSS border-bottom-right-radius property

Lakshmi Srinivas
Updated on 16-Mar-2020 07:42:18

61 Views

Use border-bottom-right-radius property for setting the border of the bottom right corner. You can try to run the following code to implement border-bottom-right-radius property −ExampleLive Demo                    #rcorner {             border-radius: 25px;             border-bottom-right-radius: 45px;             background: orange;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

CSS border-top-right-radius property

George John
Updated on 16-Mar-2020 07:42:59

73 Views

Use the border-top-right radius property in CSS to set the top right radius border. You can try to run the following code to implement border-top-right-radius property −ExampleLive Demo                    #rcorner {             border-radius: 25px;             border-top-right-radius: 45px;             background: orange;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

Fade Out Left Big Animation Effect with CSS

karthikeya Boyini
Updated on 16-Mar-2020 07:40:19

96 Views

To implement Fade Down Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes fadeOutLeftBig {             0% {                opacity: 1;                -webkit-transform: translateX(0);             }             100% {                opacity: 0;                -webkit-transform: translateX(-2000px);             }          }          @keyframes fadeOutLeftBig {             0% {                opacity: 1;                transform: translateX(0);             }             100% {                opacity: 0;                transform: translateX(-2000px);             }          }          .fadeOutLeftBig {             -webkit-animation-name: fadeOutLeftBig;             animation-name: fadeOutLeftBig;          }                           Reload page                function myFunction() {             location.reload();          }          

CSS border-radius property

Samual Sam
Updated on 16-Mar-2020 07:37:13

156 Views

Use the border-radius property to set four border-radius property. You can try to run the following code to implement border-radius property −ExampleLive Demo                    #rcorner {             border-radius: 25px;             background: #8AC007;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

Add special colored corner to body or text in CSS

Lakshmi Srinivas
Updated on 16-Mar-2020 07:35:44

459 Views

CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.ExampleLive Demo                    #rcorner {             border-radius: 25px;             background: #8AC007;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

How to check the validity of your CSS

karthikeya Boyini
Updated on 30-Jul-2019 22:30:22

118 Views

Validation is the process of checking something against a rule. When you are a beginner, it is very common that you will commit many mistakes in writing your CSS rules. How will you make sure whatever you have written is 100% accurate and up to the W3 quality standards?If you use CSS, your code needs to be correct. The improper code may cause unexpected results in how your page looks or functions.But if you want to validate your CSS style sheet embedded in an (X)HTML document, you should first check that the (X)HTML you use is valid.Tool to check the ... Read More

Create a Column Layout using CSS

Yaswanth Varma
Updated on 08-Jan-2024 14:26:29

356 Views

Web developers can organize and structure content in a visually good-looking way by utilizing CSS to create a column layout. Developers can define the number of columns by using the column-count property, while the column-gap property regulates the distance between them. This technique maximizes available space and improves readability, especially for webpages with a lot of text. A responsive and flexible layout that easily adjusts to different screen sizes and offers a consistent user experience across devices can be created by utilizing CSS rules. Gaining proficiency with column layouts improves a website's general usability and appearance, adding to its polished ... Read More

Set different font families for screen and print with CSS

Samual Sam
Updated on 16-Mar-2020 07:34:02

2K+ Views

The following example specifies different font families for screen and print. The next CSS uses the same font size for both screens as well as a printer.Example    

CSS stress property

Lakshmi Srinivas
Updated on 26-Jun-2020 07:14:27

189 Views

This property specifies the height of "local peaks" in the intonation contour of a voice. English is a stressed language, and different parts of a sentence are assigned primary, secondary, or tertiary stress. The possible values are −number − A value between '0' and '100'. The meaning of values depends on the language being spoken. For example, a level of '50' for a standard, English-speaking male voice (average pitch = 122Hz), speaking with normal intonation and emphasis would have a different meaning than '50' for an Italian voice.

Advertisements