How to make the First Letter of a paragraph Float to the Left in a Webpage
To make the first letter of the very first paragraph in a webpage larger in size and float across wrapped with the rest of the text like in magazines & newspapers and how it is being done in this blog post we need to understand 2-basic CSS style rules – (1) Descendant selectors & (2) Pseudo-class . The Descendant selector matches all the elements which are descendants of a particular element and is defined using space between the elements. The Pseudo-class is used to define a specific state of an element and is defined using colons (:) . However, one can use inline styles too to accomplish this. Inline style is like applying the CSS style rules immediately around the part of the html body section where we need to apply the desired style rule rather than writing it in the style tags. There are some websites that use inline styles for performance reasons like google.com because they think it is faster for the browser to display in inline styles than to go through...