原帖由 keshimoto 於 2007-1-17 04:12 PM 發表
Can someone show me what css is? How does it go with HTML, JavaScript and PHP type of languages? How is css different from them? Any sample code ?
One can use CSS to format the layout of your web page. You can specify the styles of elements on the page, such as color of text, width of border, position of image...etc..
<html>
<head>
<style>
.example1 {
border: red 2px solid;
}
</style>
</head>
<body>
<div class="example1">Example border 1</div>
<br>
<div style="border: blue 1px solid">Example border 2</div>
</body>
</html>