CSS border-bottom-left-radius Property

karthikeya Boyini
Updated on 16-Mar-2020 07:45:09

69 Views

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

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-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!    

Clear Content of Recycle Bin in PowerShell

Chirag Nagrekar
Updated on 16-Mar-2020 07:42:35

3K+ Views

Recycle bin in Windows operating system is to store the soft-deleted data. Soft deleted data means, data that is not deleted with (SHIFT + DEL) button but simply deleted with DEL button. Each local disk has its own configured recycle bin space.To delete the recycle bin data using GUI, you can simply right click and delete the content.It is also possible to delete the recycle bin content with the PowerShell command with the Clear-Recyclebin cmdlet. This command is introduced in PowerShell 5 and available in newer versions as well.ExampleClear-RecycleBinOutputPS C:\WINDOWS\system32> Clear-RecycleBin Confirm Are you sure you want to perform this action? Performing the operation "Clear-RecycleBin" on target "All of the contents of the Recycle Bin". [Y] Yes  [A] Yes to All ... Read More

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!    

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

167 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

480 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!    

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    

Create an Attenuated Shadow with CSS

Ankith Reddy
Updated on 16-Mar-2020 07:31:18

168 Views

Shadow filter is used to create an attenuated shadow in the direction and color specified.The following parameters can be used in this filter −S.NoParameter & Description1ColorThe color that you want the shadow to be.2DirectionThe direction of the blur, going clockwise, rounded to 45-degree increments. The default value is 270 (left).0 = Top45 = Top right90 = Right135 = Bottom right180 = Bottom225 = Bottom left270 = Left315 = Top leftExampleYou can try to run the following code to implement shadow filter −Live Demo                         Text Example:       CSS Tutorials    

Advertisements