ສາຍຫຼັກ CSS
- Previous Page ສາຍຫຼັກ CSS
- Next Page ສາຍຫຼັກ CSS
什么是 CSS?
- CSS 指的是层叠样式表* (Cascading Style Sheets)
- CSS ອະທິບາຍກຳນົດວ່າເທັກນິກ HTML ຈະສະແດງໄດ້ໃນເຊັກອາກາດ、ເຈັບສະແດງຫຼືການສະແດງອື່ນໆ!
- CSS ປັບກັບຫຼາຍແຫຼງງວຽກ!。ມັນສາມາດຄວບຄຸມຮູບແບບຂອງເວັບໄຊຫຼາກຫຼາຍຢ່າງດຽວກັນ!
- ກົດລະບຽບການແບບລາຍການຖືກບັນຈຸໃນ CSS 文件中
*:ຍັງມີຊື່ວ່າ ກົດລະບຽບການແບບຫາລວມ!
CSS 演示 - ເວັບໄຊ HTML - ກົດລະບຽບຫຼາກຫຼາຍ!
ລາຍການນີ້ແມ່ນເວັບໄຊ HTML ທີ່ມີສະແນວກົດລະບຽບທີ່ບໍ່ອີກສີ່ຢ່າງ! ການລະບຸການແບບກົດລະບຽບລາຍການກ່າວຫາລາຍການແບບກົດລະບຽບທີ່ຫຼາກຫຼາຍ:
ຍິວວ່າພວກເຮົາຈະໃຊ້ CSS?
CSS ຖືກນຳໃຊ້ເພື່ອກຳນົດຮູບແບບເວັບໄຊ,ລວມທັງການອອກແບບພາບຂອງອຸປະກອນທັງໝົດແລະຂະໜາດຂອງເຄື່ອງຈັກສະແດງ!
ຄວາມສະໝອງ CSS
body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; }
CSS ພົບໄດ້ບັນຫາທີ່ໃຫຍ່!
HTML ບໍ່ໄດ້ຕັ້ງໃຈຈະບັນຈຸແບບຂອງເວັບໄຊ!
The purpose of creating HTML isDescribe the web pageFor example:
<h1>This is a heading.</h1> <p>This is a paragraph.</p>
After adding tags like <font> and color attributes to the HTML 3.2 specification, the nightmare of web developers began. Adding font and color information to each page of large websites became a long and expensive process.
To solve this problem, the World Wide Web Consortium (W3C) created CSS.
CSS removed the style format from HTML pages!
If you don't know what HTML is, it is recommended that you read HTML Tutorial.
CSS saves a lot of work!
Style definitions are usually stored in external .css files.
By using an external stylesheet file, you only need to change one file to change the appearance of the entire website!
- Previous Page ສາຍຫຼັກ CSS
- Next Page ສາຍຫຼັກ CSS