🗊Презентация Cascading Style Sheets CSS

Категория: Образование
Нажмите для полного просмотра!
Cascading Style Sheets CSS, слайд №1Cascading Style Sheets CSS, слайд №2Cascading Style Sheets CSS, слайд №3Cascading Style Sheets CSS, слайд №4Cascading Style Sheets CSS, слайд №5Cascading Style Sheets CSS, слайд №6Cascading Style Sheets CSS, слайд №7Cascading Style Sheets CSS, слайд №8Cascading Style Sheets CSS, слайд №9Cascading Style Sheets CSS, слайд №10Cascading Style Sheets CSS, слайд №11Cascading Style Sheets CSS, слайд №12Cascading Style Sheets CSS, слайд №13Cascading Style Sheets CSS, слайд №14Cascading Style Sheets CSS, слайд №15Cascading Style Sheets CSS, слайд №16Cascading Style Sheets CSS, слайд №17Cascading Style Sheets CSS, слайд №18

Вы можете ознакомиться и скачать презентацию на тему Cascading Style Sheets CSS. Доклад-сообщение содержит 18 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

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


Слайд 1





Computation and Problem Solving
Cascading Style Sheets (CSS)
Korzhumbayev Azamat
Описание слайда:
Computation and Problem Solving Cascading Style Sheets (CSS) Korzhumbayev Azamat

Слайд 2





Values - Colors
Colors
 is either a keyword (e.g. white, red), or a numerical RGB notation.
A numerical RGB notation can be:
An RGB value in hexadecimal notation, which is a ‘#’ immediately followed by a 6 digit or 3 digit hexadecimal number
E.g. #ff0000, #f00
An RGB value in functional notation
E.g. rgb(255,0,0), rgb(100%,0%,0%)
Описание слайда:
Values - Colors Colors is either a keyword (e.g. white, red), or a numerical RGB notation. A numerical RGB notation can be: An RGB value in hexadecimal notation, which is a ‘#’ immediately followed by a 6 digit or 3 digit hexadecimal number E.g. #ff0000, #f00 An RGB value in functional notation E.g. rgb(255,0,0), rgb(100%,0%,0%)

Слайд 3





Values - Lenghts
Lengths can be
Relative
em (font size of the relevant font), 
ex (x-height of the relevant font), 
	% etc.
Absolute
	px *(pixels), in (inches), cm, mm, 
pt (points, =1/72 in), pc (picas, 1 pc = 12 pt)
Note: no space between number and length notation
Описание слайда:
Values - Lenghts Lengths can be Relative em (font size of the relevant font), ex (x-height of the relevant font), % etc. Absolute px *(pixels), in (inches), cm, mm, pt (points, =1/72 in), pc (picas, 1 pc = 12 pt) Note: no space between number and length notation

Слайд 4





CSS Background
Background-color : color;
Background-image : url (‘URL’);
Background-repeat : repeat-x,repeat-y, no-repeat;
Background-attachment : fixed, local
Background-position : left top, left bottom, etc.
Background: red url(‘smiley.jpg’) no-repeat fixed 50% 50%;
Описание слайда:
CSS Background Background-color : color; Background-image : url (‘URL’); Background-repeat : repeat-x,repeat-y, no-repeat; Background-attachment : fixed, local Background-position : left top, left bottom, etc. Background: red url(‘smiley.jpg’) no-repeat fixed 50% 50%;

Слайд 5





Box Properties
margin : <length>
border : <style> <width> <color>
padding : <length>
content width & height : <length>
Example:
Описание слайда:
Box Properties margin : <length> border : <style> <width> <color> padding : <length> content width & height : <length> Example:

Слайд 6





Box Model
Описание слайда:
Box Model

Слайд 7





Border property
Описание слайда:
Border property

Слайд 8





Margin property
Описание слайда:
Margin property

Слайд 9





Padding property
Описание слайда:
Padding property

Слайд 10





Outline property
Описание слайда:
Outline property

Слайд 11





Text Properties
font-family : <font name>, | <font name>
font-size : <length> | <percentage> | inherit
font-weight : normal | bold | lighter | 100 | 200 
normal = 400, bold = 700, lighter is relative
font-style : normal | italic | oblique | inherit
line-height : normal | <length> | <percentage> | inherit
text-transform : capitalize | uppercase | lowercase | none | inherit
text-decoration : overline | underline | line-through
color : <color>
text-indent : <length> | <percentage> | inherit
text-align : left | right | center | justify | inherit
Описание слайда:
Text Properties font-family : <font name>, | <font name> font-size : <length> | <percentage> | inherit font-weight : normal | bold | lighter | 100 | 200 normal = 400, bold = 700, lighter is relative font-style : normal | italic | oblique | inherit line-height : normal | <length> | <percentage> | inherit text-transform : capitalize | uppercase | lowercase | none | inherit text-decoration : overline | underline | line-through color : <color> text-indent : <length> | <percentage> | inherit text-align : left | right | center | justify | inherit

Слайд 12





CSS Links
	Links can be styled with any css property (color, background-color, font-family etc.) and have 4 states which can also be styled:
a:link : normal unvisited link
a:visited : visited link
a:hover : link when user mouses over it. MUST come after :link and :visited
a:active : link at the moment when it’s clicked. MUST come after :hover
Описание слайда:
CSS Links Links can be styled with any css property (color, background-color, font-family etc.) and have 4 states which can also be styled: a:link : normal unvisited link a:visited : visited link a:hover : link when user mouses over it. MUST come after :link and :visited a:active : link at the moment when it’s clicked. MUST come after :hover

Слайд 13





List Properties
list-style: [disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none] || [inside | outside] || [<url> | none]
Example
li { list-style: disc inside url(‘bullet2.gif’); }
Can use the list-style-type, list-style-position, list-style-image separately.
Описание слайда:
List Properties list-style: [disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none] || [inside | outside] || [<url> | none] Example li { list-style: disc inside url(‘bullet2.gif’); } Can use the list-style-type, list-style-position, list-style-image separately.

Слайд 14





List Properties
Описание слайда:
List Properties

Слайд 15





Display Property
	Is one of the most important ones for controlling CSS layout. Each element has its own default value depending on its type. Most used values are:
block – displays an element as a block element
inline – displays an element as an inline element
none – does not display an element at all
	NOTE: it does not change the type of element itself, only how it appears.
Описание слайда:
Display Property Is one of the most important ones for controlling CSS layout. Each element has its own default value depending on its type. Most used values are: block – displays an element as a block element inline – displays an element as an inline element none – does not display an element at all NOTE: it does not change the type of element itself, only how it appears.

Слайд 16





Positioning Properties
height : <length> | % | inherit
width : <length> | % | inherit 
max-width : <length> | % | inherit 
left : <length> | % | auto | inherit
top : <length> | % | auto | inherit
right : <length> | % | auto | inherit
bottom : <length> | % | auto | inherit
position : static | relative | absolute | fixed | inherit
left/top/right/bottom usually used when position is specified as absolute.
Описание слайда:
Positioning Properties height : <length> | % | inherit width : <length> | % | inherit max-width : <length> | % | inherit left : <length> | % | auto | inherit top : <length> | % | auto | inherit right : <length> | % | auto | inherit bottom : <length> | % | auto | inherit position : static | relative | absolute | fixed | inherit left/top/right/bottom usually used when position is specified as absolute.

Слайд 17





Values for position property
Описание слайда:
Values for position property

Слайд 18





Z-index Property
	When elements are positioned they can become overlapped. Z-index property is used to specify the stack order. 
Example
	NOTE. If two elements overlap without a z-index specified, the element positioned last in the HTML will be shown on top.
Описание слайда:
Z-index Property When elements are positioned they can become overlapped. Z-index property is used to specify the stack order. Example NOTE. If two elements overlap without a z-index specified, the element positioned last in the HTML will be shown on top.



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