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
Front End Scripts Articles - Page 13 of 60
257 Views
To set the whitespace between text, use the white-space property. Possible values are normal, pre, nowrap.ExampleYou can try to run the following code to set the whitespace between text in CSS: This text has a line break and the white-space pre setting tells the browser to honor it just like the HTML pre tag.
254 Views
Use the text-transform property to set the cases for a text. Possible values are none, capitalize, uppercase, lowercase.ExampleYou can try to run the following code to set the cases for a text: This will be capitalized This will be in uppercase This will be in lowercase
394 Views
The white-space property is used to control the flow and formatting of text.ExampleYou can try to run the following code to implement white-space property to control the flow of text: This text has a line break and the white-space pre setting tells the browser to honor it just like the HTML pre tag.
88 Views
The white-space property is used to control the flow and formatting of text.ExampleYou can try to run the following code to implement white-space property: This text has a line break and the white-space pre setting tells the browser to honor it just like the HTML pre tag.
4K+ Views
To convert text to lowercase with CSS, we will be using the lowercase value of text-transform property. Example In this example, we are using text-transform property and displaying the result as before and after the conversion using p tag. #lcase{ text-transform:lowercase; } Convert Text ... Read More




