วันพฤหัสบดีที่ 1 กรกฎาคม พ.ศ. 2553

CSS The class Selector

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 any HTML elements with the same class.

The class selector uses the HTML class attribute, and is defined with a "."

In the example below, all HTML elements with class="center" will be center-aligned:

Example

.center {text-align:center;}

Try it yourself »

You can also specify that only specific HTML elements should be affected by a class.

In the example below, all p elements with class="center" will be center-aligned:

Example

p.center {text-align:center;}

Try it yourself »

Remark Do NOT start a class name with a number! This is only supported in Internet Explorer.


เราจัดเรียงรวมกันหลายๆอันโดยเป็นกล่มให้มัน ทำงานทีละเป็นกลุ่มๆ แต่เรียกว่า class
ตามตัวอย่าง เราจัดกลุ่มคำสั่งของมัน ทีละหลายๆที่ โดยใช้เครื่องหมาย . หมายถึง class ตามด้วยชื่อ

ไม่มีความคิดเห็น:

แสดงความคิดเห็น