
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1594 Articles for CSS

317 Views
To implement animation on min-height property with CSS, you can try to run the following codeExampleLive Demo div { overflow: auto; width: 350px; background-color: blue; color: white; border: 1px solid black; animation: myanim 3s infinite; } @keyframes myanim { ... Read More

211 Views
The voice-duration property in CSS is used where synchronization of speech is done with other media.The following is an example to implement the voice-duration speech media propertyp { voice-duration: 5s; }Above you can set auto value also.The auto value rectify a used value corresponding to the duration of the speech synthesis when using the inherited voice-rate. This is when you use inherited voice-rate.

164 Views
Use the voice-balance property to set whether the spoken voice is from the left or right, etc.The following is a syntax to set the volume from left or right or centervoice-balance: left | center | rightLet us see an example to implement the voice-balance speech media propertyp { voice-balance: right; }

1K+ Views
To implement animation on max-width property with CSS, you can try to run the following codeExampleLive Demo div { overflow: auto; background-color: blue; color: white; border: 1px solid black; animation: myanim 3s; } @keyframes myanim { 30% { ... Read More

180 Views
The rest property is a shorthand property for rest-before and rest-after properties. Set a pause before or after the element.The following is the syntax:rest: rest-before rest-afterHere,rest-before: Rest for some seconds beforerest-after: Rest for some seconds afterExampleThe following is an example of rest speech media property:h1 { rest: 15ms 20ms; }

169 Views
Add adjustments to the speech with the voice-stress property like change pitch, how much loud it is, etc.The following is the syntax:voice-stress: normal | strong | moderate | none | reducedThe following example is to implement the voice-stress speech media property:p { voice-stress: strong; }Above, I have set strong emphasis using the strong voice-stress property value.

208 Views
Adjust the relative volume level using the voice-volume CSS property.The following is the syntax:voice-volume: [x-soft | soft | medium | loud | x-loud]The following is a code snippet for the voice-volume speech media property:p { voice-volume: soft; }You can also set the volume in decibalsp { voice-volume: 2dB; }Set both the voice-volume media property and volume level in decibals :p { voice-volume: medium 3dB; }

169 Views
To implement animation on opacity property with CSS, you can try to run the following code:ExampleLive Demo #demo1 { position: absolute; top: 60px; width: 300px; height: 150px; background-color: lightblue; animation: myanim 4s infinite; } #demo2 { position: absolute; top: 90px; left: 30px; width: 300px; height: 150px; background-color: orange; animation: myanim 3s infinite; } #demo3 { position: absolute; top: 120px; left: 60px; width: 350px; height: 150px; background-color: coral; } @keyframes myanim { 30% { opacity: 0.4; } } Showing opacity End div Start div

291 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: 400px; height: 250px; } Rounded border-top-right corner!