Mohammad Towhidul Islam

    24-Mar-13 12:04:39 am

    The class selector selector is used to specify a style for group

    The class Selector The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector is most often used on several elements. This allows you to set a particular style for many HTML elements with the same class. The class selector uses the HTML class a...

    Read More


    Mohammad Towhidul Islam

    24-Mar-13 12:02:24 am

    The id selector selector is used to specify a style for single

    The id Selector The id selector is used to specify a style for a single, unique element. The id selector uses the id attribute of the HTML element, and is defined with a "#". The style rule below will be applied to the element with id="para1": example #para1{ text-align:center...

    Read More


    Mohammad Towhidul Islam

    21-Mar-13 12:35:14 am

    Html head style mystyle colorred body p class mystyle this is

    <html> <head> <style> .mystyle{color:red;} </style> </head> <body> <p class="mystyle">This is a text1</p> <p class="mystyle">This is a text2</p> <p class="mystyle&qu...

    Read More


    Mohammad Towhidul Islam

    21-Mar-13 12:29:26 am

    1 external css html head link href basic css rel stylesheet

    1. External CSS <html> <head> <link href="basic.css" rel="stylesheet" /> </head> <body> <p class="mystyle">This is a text</p> </body> </html>...

    Read More


    Mohammad Towhidul Islam

    21-Mar-13 12:24:51 am

    2 internal css html head style mystyle colorred body p class

    2. Internal CSS <html> <head> <style> .mystyle{color:red;} </style> </head> <body> <p class="mystyle">This is a text</p> </body> </html>...

    Read More


    Mohammad Towhidul Islam

    21-Mar-13 12:20:50 am

    3 example inline css p style colorred this is a text

    3. Example Inline CSS <p style="color:red;">This is a text</p>...

    Read More


    Mohammad Towhidul Islam

    21-Mar-13 12:18:17 am

    What is css css stands for cascading style sheets styles define how to display

    What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Basic type: 1. External CSS 2. Internal CSS 3. Inline CSS...

    Read More


First12Last
2 of 2 pages
Copyright © 2025. Powered by Intellect Software Ltd