Posts

Showing posts with the label CSS

How to clear the cache of client browsers?

Image
Hello friends today we will learn how to clear the cache client browsers. This technique is very simple. Just add a version parameter to the URL string which is either a random string or a random number. If you change your sites CSS and upload on the server you will get old result only. For solve this problem, simply add ?ver=1.1 to the CSS import at the head of the file. So the browser teat as a different file. Example: <link href="css/style.css" rel="stylesheet" type="text/css" /> Becomes <link href="css/style.css?ver=1.1" rel="stylesheet" type="text/css" /> Same you can apply for JavaScript files.

How to create paragraph in html?

Use following code for creating paragraph in html <div style="text-indent: 20px;"> This uses the 'div' element in conjunction with the 'style' attribute to create a paragraph style similar to printed text paragraphing. The first line of text in this generic division is indented by a space of 20 pixels. </div> <div style="text-indent: 20px;"> Here is the second generic division. The flow of text breaks to the next line and the first line of text is also indented by a space of 20 pixels. </div>