🗊 Презентация HTML and CSS. Site layout. Best practices

Нажмите для полного просмотра!
HTML and CSS. Site layout. Best practices, слайд №1 HTML and CSS. Site layout. Best practices, слайд №2 HTML and CSS. Site layout. Best practices, слайд №3 HTML and CSS. Site layout. Best practices, слайд №4 HTML and CSS. Site layout. Best practices, слайд №5 HTML and CSS. Site layout. Best practices, слайд №6 HTML and CSS. Site layout. Best practices, слайд №7 HTML and CSS. Site layout. Best practices, слайд №8 HTML and CSS. Site layout. Best practices, слайд №9 HTML and CSS. Site layout. Best practices, слайд №10 HTML and CSS. Site layout. Best practices, слайд №11 HTML and CSS. Site layout. Best practices, слайд №12 HTML and CSS. Site layout. Best practices, слайд №13 HTML and CSS. Site layout. Best practices, слайд №14

Вы можете ознакомиться и скачать презентацию на тему HTML and CSS. Site layout. Best practices. Доклад-сообщение содержит 14 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


HTML and CSS. Site layout. Best practices.
Описание слайда:
HTML and CSS. Site layout. Best practices.

Слайд 2


Agenda Knowledge base HTML / CSS basics HTML tags, their attributes CSS specification and possibilities rules for tags, classes, pseudoclasses rule...
Описание слайда:
Agenda Knowledge base HTML / CSS basics HTML tags, their attributes CSS specification and possibilities rules for tags, classes, pseudoclasses rule dependencies ‘elephant vs. whale’ Best practices Wrapping elements Setting classes Using names Classes tricks

Слайд 3


Knowledge base TextTextTextTextTextTextTextTextTextTextText
Описание слайда:
Knowledge base TextTextTextTextTextTextTextTextTextTextText

Слайд 4


Knowledge base Difference between: .style1 .style2 {color: red;} .style1, .style2 {color: green;} .style1.style2 {color: blue;}
Описание слайда:
Knowledge base Difference between: .style1 .style2 {color: red;} .style1, .style2 {color: green;} .style1.style2 {color: blue;}

Слайд 5


Knowledge base What does it mean: .style1 {background: url(gfx/logo.png) -20px 0px;}
Описание слайда:
Knowledge base What does it mean: .style1 {background: url(gfx/logo.png) -20px 0px;}

Слайд 6


HTML / CSS basics – HTML tags, their attributes Content , , ,… , , ,… , Block elements and inline elements
Описание слайда:
HTML / CSS basics – HTML tags, their attributes Content , , ,… , , ,… , Block elements and inline elements

Слайд 7


HTML / CSS basics – CSS specification and possibilities span {color: red;} .classname {color: blue;} a:hover {color: orange;} #id {color: yellow;}
Описание слайда:
HTML / CSS basics – CSS specification and possibilities span {color: red;} .classname {color: blue;} a:hover {color: orange;} #id {color: yellow;}

Слайд 8


HTML / CSS basics – CSS rule dependencies div span {color: red;} div .c1 #c2 {color: blue;} div>span {color: yellow;} #id1, #id2 {color: yellow;}...
Описание слайда:
HTML / CSS basics – CSS rule dependencies div span {color: red;} div .c1 #c2 {color: blue;} div>span {color: yellow;} #id1, #id2 {color: yellow;} .c1.c2 {color: yellow;} .c1.c2 a:hover {color: yellow;}

Слайд 9


HTML / CSS basics – CSS rules weight !important; .class {color: #454545 !important;} Inline style; script set style CSS definitions comlination:...
Описание слайда:
HTML / CSS basics – CSS rules weight !important; .class {color: #454545 !important;} Inline style; script set style CSS definitions comlination: tagname = 1 classname = 10 id = 100 #id.class a span.i {font-style: italic;} Browser/OS defaults

Слайд 10


Best practices Use clean and clear HTML with CSS: avoid inline styling; try to avoid tag; use clear names for id’s and classes; Wrap elements and...
Описание слайда:
Best practices Use clean and clear HTML with CSS: avoid inline styling; try to avoid tag; use clear names for id’s and classes; Wrap elements and functional parts in for simple and clear styling: Divide et impera! Progressive JPEG method

Слайд 11


Best practices Set classes, nevertheless it looks unnecessary Browser specific content; using classes instead of hacks Use JS for Browser...
Описание слайда:
Best practices Set classes, nevertheless it looks unnecessary Browser specific content; using classes instead of hacks Use JS for Browser determination for ie.css Easy restyling/rebranding Easy access to abstractions and enhance styling possibilities

Слайд 12


Best practices Use multiple classes for one elements: Abstract classes {float: left;}, {position: relative;}, {display: none;} Similar elements...
Описание слайда:
Best practices Use multiple classes for one elements: Abstract classes {float: left;}, {position: relative;}, {display: none;} Similar elements styling TextTextTextTextTextTextTextText example form elements event-depended styling Hover styling (a img {behavoir_1} / a:hover img {behavoir_2}) Menus, events, notifications, etc. – it’s web 2.0, man!

Слайд 13


References
Описание слайда:
References

Слайд 14


Thank you!
Описание слайда:
Thank you!



Похожие презентации
Mypresentation.ru
Загрузить презентацию