(Cascading Style Sheet)

Slides:



Advertisements
Presentasi serupa
Cascading Style Sheet Gufron Gufron - Sub Bahasan • Pendahuluan • Konsep Dasar CSS • Syntax/Perintah CSS • Implementasi.
Advertisements

Desain web – pertemuan 10 CSS (Part 3).
ID pada CSS.
Cascade Style Sheet (CSS) Dahlan Abdullah /
CSS Cascading Style Sheet Cascading Style Sheet Cascading Style Sheet
Cascading Style Sheets (CSS)
( Cascading Style Sheet) Bagian 1
Pertemuan 9 Cascading Style Sheet (css)
Cascading Style Sheets (CSS)
CSS(Cascading style sheet) Rina Dewi Indah Sari, S.Kom
Tim FT Elektro UHAMKA CSS (Cascading Style Sheet)
PENGERTIAN CSS.
CSS.
HTML - CSS Cascading Style Sheet.
Pemrograman Web/TI/ AK /2 sks - Konsep dasar CSS - CSS properties Cascading Style Sheets (CSS) Pertemuan ke 4.
Cascading Style Sheet Oleh : Edy Mulyanto
Web and Multimedia based Programming K2133 Pemrograman berbasis Web dan Multimedia 1.
Latihan CSS.
Pemrograman Berbasis Web CSS
CSS (Cascading Style Sheet)
CSS Eksternal & Style Elemen
PENGENALAN CSS CSS = Cascading Style Sheet Fungsi : mendefenisikan style untuk suatu teks dengan jenis huruf, ukuran, warna tertentu.
CSS digunakan oleh penulis maupun pembaca halaman web untuk menentukan warna, jenis huruf, tata letak, dan berbagai aspek tampilan dokumen. CSS digunakan.
Cascading Style Sheet (CSS)
Cascading Style Sheets
Cascading Style Sheet (CSS)
Lutfi Budi Ilmawan Univ. Muslim Indonesia
...Lanjutan Pokok Bahasan Bahasa Style CSS L. Erawan.
X/HTML - CSS - Javascript
Cascading Style Sheets (CSS)
Pemrograman Berbasis Web CSS
Pemrograman internet ABU SALAM, M.KOM.
Cascading Style Sheet (CSS)
PERTEMUAN CSS Pengenalan CSS.
CSS (Cascading Style Sheet)
Cascading Style Sheets (CSS)
Pemrograman Basis Data Berbasis Web
HTML CSS.
Perkenalan CSS.
Cascading Style Sheets (CSS)
Pengenalan CSS Apasih CSS itu ?.
CASCADING STYLE SHEETS (CSS)
Firman Wahyudhie Cascading STYLE SHEET.
S1 Teknik Informatika - Unijoyo
Cascading Style Sheet (CSS)
KOMPUTER APLIKASI IT XHTML & CSS MODUL 06
PRIN STIANINGSIH TEACHER OF SMK NEGERI 1 PEKANBARU
(Cascading Stylesheet)
CSS Pertemuan 12 Matakuliah : L0182 / Web & Animation Design
PERTEMUAN 5 CSS IMAGE.
Cascade Style Sheet (CSS)
CSS.
( Cascading Style Sheet) Bagian 1
CSS.
Pemrograman Basis Data Berbasis Web
( Cascading style sheets)
Assalamu’alaikum Warohmatullah Wabarokatuh Selamat Pagi 
Triyanna Widiyaningtyas
Pemrograman Web I --CSS--
APLIKASI KOMPUTER “WEBSITE”
Urutan Prioritas Selector CSS (Cascading)
CSS Khafiizh Hastuti.
Implementasi CSS Ada 4 cara memasang kode CSS ke dalam halaman situs, yaitu: Inline CSS Embedded (memasang kode ke dalam bagian External.
...Lanjutan Pokok Bahasan Bahasa Style CSS L. Erawan.
PENGENALAN CSS CSS = Cascading Style Sheet Fungsi : mendefenisikan style untuk suatu teks dengan jenis huruf, ukuran, warna tertentu.
CSS (Cascading Style Sheet)
CSS (Cascading Style Sheet)
List dan Image pada HTML
CSS Cascading Style Sheet
Web Design CSS.
Transcript presentasi:

(Cascading Style Sheet) CSS (Cascading Style Sheet)

CSS CSS singkatan dari Cascading Style Sheets CSS mendefinisikan bagaimana elemen HTML yang akan ditampilkan Gaya ditambahkan ke HTML 4.0 untuk memecahkan masalah tampilan HTML

Metode Penulisan CSS Inline Style sheet Embedded/Internal Style Sheet Linked/External Style Sheet

Inline Style Sheet CSS didefinisikan langsung pada tag2 html yang bersangkutan. Contoh penulisannya dengan menambahkan attribut style=“...” dalam tag2 html tersebut. Contoh. <p style=“color:red;text-align:center;”> </p>

Embedded/Internal Style Sheet CSS didefinisikan terlebih dulu dalam tag <style>...</style>sebelum tag <body>. Contoh.

<html> <head> <style> p {     color: red;     /* This is a single-line comment */     text-align: center; } </style> </head> <body> </body> </html>

Linked/External Style Sheet CSS akan didefinisikan dalam bentuk file .css Untuk memanggil file css, harus dipanggil dengan menggunakan tag <link> di antara tag <head>...</head> Contoh.

Contoh <html> <head> <link rel="stylesheet" type="text/css" href=“style.css"> </head> <body> </body> </html>

style.css body {     background-color: lightblue; } h2 {     color: navy;     margin-left: 20px; }

Linked/External Style Sheet Linked/External Style Sheet ini sangat ideal bila gaya ini diterapkan untuk banyak halaman. Dengan style sheet eksternal, Anda dapat mengubah tampilan seluruh situs dengan mengubah hanya satu file.

Multiple Styles Will Cascade into One CSS mana yang akan digunakan bila ada lebih dari satu style yang ditentukan untuk sebuah elemen HTML?

Multiple Styles Will Cascade into One Secara umum kita dapat mengatakan bahwa semua gaya akan "cascade" menjadi dengan aturan berikut, di mana nomor empat memiliki prioritas tertinggi:

Multiple Styles Will Cascade into One Browser default External style sheet Internal style sheet (in the head section) Inline style (inside an HTML element)

Multiple Styles Will Cascade into One Jadi, inline style (dalam elemen HTML) memiliki prioritas tertinggi, yang berarti bahwa itu akan menimpa gaya didefinisikan dalam <head> tag, atau dalam style sheet eksternal, atau dalam browser (nilai default).

Syntax

Selector The element Selector The id Selector The class Selector Grouping Selectors

Element Selector p {     text-align: center;     color: red; }

Id Selector #para1 {     text-align: center;     color: red; }

Class Selector .center {     text-align: center;     color: red; }

Grouping Selector h1, h2, p { text- align: center; color: red; } h1 {     text-align: center;     color: red; } h2 {     text-align: center;     color: red; } p {     text-align: center;     color: red; } h1, h2, p {     text- align: center;     color: red; }

Property Background Text Font Link Table

Background background-color background-image background-repeat background-attachment background-position

Background h1 {     background-color: #6495ed; } p {     background-color: #e0ffff; } div {     background-color: #b0c4de; }

Text color text-align text-decoration text-transform text-indent

h1 {     color: #00ff00; } h1 {     text-align: center; } a {     text-decoration: none; } p.lowercase {     text-transform: lowercase; } p {     text-indent: 50px; } Bila mendefinisikan property color, maka background-color harus didefinisikan juga

Font font-style font-size Font-family

Font-family p { font-family: "Times New Roman", Times, serif; } Fallback system Jika font yang didepan tidak ada, maka digantikan dengan font dibelakang p {     font-family: "Times New Roman", Times, serif; }

Link a:link - a normal, unvisited link a:visited - a link the user has visited a:hover - a link when the user mouses over it a:active - a link the moment it is clicked

a:hover MUST come after a:link and a:visited /* unvisited link */ a:link {     color: #FF0000; } /* visited link */ a:visited {     color: #00FF00; } /* mouse over link */ a:hover {     color: #FF00FF; } /* selected link */ a:active {     color: #0000FF; } a:hover MUST come after a:link and a:visited a:active MUST come after a:hover

Table Border border-collapse Height Width Vertical-align Padding background-color