Docs/CSS/Introduction

Apa itu CSS?

CSS (Cascading Style Sheets) mengatur tampilan elemen HTML. Ada 3 cara:

  • Inline — atribut style
  • Internal — tag <style> di <head>
  • External — file .css terpisah
style.css
Try It →
.box {
  background: linear-gradient(135deg, #6DD5C4, #7EB8F0);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}