1 / 18

CSS – Stil Şablonları ( Cascading style Sheet )

CSS – Stil Şablonları ( Cascading style Sheet ). CSS Nedir?. Cascading Styling Sheet – Stil Şablonları Bir web sayfası için İçerik ile biçimlendirme kısmını ayırır. Avantajları Görünüm Kolaylığı Kullanım Kolaylığı Tasarım tutarlılığı Daha az dosya Boyutu Temiz kod. Stil Şablonları.

nardo
Download Presentation

CSS – Stil Şablonları ( Cascading style Sheet )

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSS – Stil Şablonları(CascadingstyleSheet)

  2. CSS Nedir? • CascadingStylingSheet – Stil Şablonları • Bir web sayfası için İçerik ile biçimlendirme kısmını ayırır. • Avantajları • Görünüm Kolaylığı • Kullanım Kolaylığı • Tasarım tutarlılığı • Daha az dosya Boyutu • Temiz kod Öğr.Gör. Aslı Yazağan

  3. Stil Şablonları • Sayfa tasarımında esneklik sağlar. • Birden fazla sayfayı etkiler. • Yerel (InlineStyle): bir html tagı için kullanılan CSS türüdür. • Genel (HeaderStyle): tüm sayfa için, tüm html taglarının değiştirilmesinde kullanılan CSS türüdür. • Harici (ExternalStyle): birden çok sayfa için kullanılan CSS türüdür. Bu CSS türü ayrı bir dosya olarak çalışmaktadır.

  4. Yerel CSS <html><head><title>CSS Dersleri – Metin Yılmaz</title></head><body><p style=”font-size:12pt; color:blue;”>InlineStyle Kullanımı</p></body></html>

  5. Genel CSS <html><head><title>CSS Dersleri – Metin Yılmaz</title><styletype=”text/css”>p {font-size:12pt;color:blue;}</style></head><body><b>HeaderStyle Kullanımı</b></body></html>

  6. Harici CSS

  7. Soru? Öğr.Gör. Aslı Yazağan

  8. CSS’i Web Dökümanına Eklemek Öğr.Gör. Aslı Yazağan • @import <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>CSS’i Uygulamak</title> <styletype="text/css"> @import "ornek.css"; </style> </head> • Bu yöntemle eklenen harici css dosyası eski web tarayıcıları tarafından görüntülenemeyecektir

  9. CSS YAPISI Öğr.Gör. Aslı Yazağan

  10. Uygulama

  11. Metin için bazı CSS etiketleri • Font-size http://www.w3schools.com/css/css_font.asp • Font-style: italic • Font-weight: bold • Font-family : Georgia, Arial, Serif, Times, Helvetica • Color • Text-alignment: right, left, justify • Text- decoration:overline,line-through-underline • Text-transform: uppercase, lowercase, capitalize • Text-indent

  12. Typography

  13. Hangisi Daha Güvenilir gözüküyor?

  14. Uygulama • P { font : 0.9em Georgia; color:#000; }

  15. Arkaplan için Bazı CSS özellikleri • Background-color : colorcode, colorname • Background-image : url(imagename) • Background-repeat : repeat,no-repeat,repeat-x, repeat-y • Background-position : • Ex: http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-position • Background-attachment: fixed, scroll Kaynak: http://www.w3schools.com/css/css_background.asp

  16. Linkler için CSS özellikleri • A:link • A:visited • A:hover • A:active http://www.w3schools.com/css/css_link.asp

  17. Listeler için CSS özellikleri • List-style-type: circle, square • list-style-image: url(‘imgname.gif'); http://www.w3schools.com/css/css_list.asp

More Related