Category: Web Development
What is WordPress WordPress is a free open source blogging content management system (CMS). It requires PHP and MySQL for its working. It has inbuilt template management known as themes …
Getting a website is very easy, you don’t need to learn programming or designing for putting a basic web page online. First you should be familiar with few terms …
CSS provides few interesting pseudo classes. It started with CSS 1 when the :link, :visited, and :active pseudo-classes were introduced. But it applied only to an HTML a element. …
Adding elements to a Web page without specific coordinates will result in stacking of elements against the left side of previous element. CSS provides two important positioning tools: floating …
In a CSS a box model is followed for every element. Visualise it as a imaginary Box with element surronded by optional padding, border, and margins (refer to image). …
Border is frame of Line surrounding an element. This Line can be solid , dotted among many other options. Available spacing options in CSS border-style border-style border-color Each element …
With CSS style you can take control of space across your text. Below are available spacing options in CSS line-height vertical-align text-align text-indent white-space word-spacing letter-spacing What is line-height …
CSS files can change default font used for displaying Web page. Below are available Font properties which can be controlled using CSS font-family font-size font-weight font-style font-variant test-transform color …
CSS files can be written using any text editor like notepad , wordpad. An CSS style file is created with”.css” extension. The HTML file which wants to use this style has …
CSS – Classes CSS Classes Classes are used to define alternative styles for selectors. Like all the h4 headings are in black but you want to create few h4 …