
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
Lakshmi Srinivas has Published 287 Articles

Lakshmi Srinivas
85 Views
Use the Unicode-bidi property to set whether the text should be overridden to support multiple languages with CSSExampleLive Demo p.demo1 { direction: rtl; unicode-bidi: bidi-override; } p.demo2 { direction: rtl; unicode-bidi: isolate; } The unicode-bidi Property This is demo text. This is demo text This is demo text

Lakshmi Srinivas
136 Views
CSS provides a property called overflow that tells the browser what to do if the box's contents are larger than the box itself. The following are the values of overflow property −ValueDescriptionVisibleAllows the content to overflow the borders of its containing element.HiddenThe content of the nested element is simply cut off at ... Read More

Lakshmi Srinivas
224 Views
To implement animation on the border-top property with CSS, you can try to run the following codeExampleLive Demo table, th, td { border: 1px solid black; } ... Read More

Lakshmi Srinivas
128 Views
The attr() CSS function returns the value of an attribute of the selected element using CSSYou can try to run the following code to implement the attr() function in CSSExampleLive Demo a:before {content: " (" attr(href) ")";} Information Resource Resource: Welcome to Qries

Lakshmi Srinivas
90 Views
With CSS cursor property, you can show a crosshair or plus sign, pointer, etc. You can try to run the following code to implement cursor property in CSS −Example Auto Crosshair Default ... Read More

Lakshmi Srinivas
1K+ Views
To implement animation on the bottom property with CSS, you can try to run the following codeExampleLive Demo div { width: 200px; height: 300px; background: yellow; border: 10px solid red; animation: myanim 3s infinite; bottom: 30px; position: absolute; } @keyframes myanim { 20% { bottom: 100px; } } Performing Animation for bottom property

Lakshmi Srinivas
357 Views
Use the grid-auto-rows property to set a default size for the row.You can try to run the following code to implement the grid-auto-rows property with CSS ExampleLive Demo .container { display: grid; ... Read More

Lakshmi Srinivas
53 Views
To implement animation on border-bottom-right-radius property with CSS, you can try to run the following codeExampleLive Demo div { width: 500px; height: 400px; ... Read More

Lakshmi Srinivas
112 Views
Use the align-content property with value center to set the flex lines to the center.You can try to run the following code to implement the center valueExampleLive Demo .mycontainer { display: flex; ... Read More

Lakshmi Srinivas
255 Views
The touchstart event is fired when the touchpoint is positioned on the touch surface. Use addEventListener() for touchmove pointer-events −overlay.addEventListener('touchstart', function(ev){ ev.preventDefault(); });Here, we have also used the preventDefault() method. The preventDefault() method prevents the browser from executing the default action.