Parashar Technologies HTML Lecture Notes-4

Similar documents
CSS Selectors. element selectors. .class selectors. #id selectors

BIM222 Internet Programming

12/9/2012. CSS Layout

Adding CSS to your HTML

Page Layout. 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning

CSS مفاهیم ساختار و اصول استفاده و به کارگیری

Cascading Style Sheet Quick Reference

Appendix D CSS Properties and Values

Assignments (4) Assessment as per Schedule (2)

CSS Cascading Style Sheets

Cascading Style Sheets CSCI 311

CSS Box Model. Cascading Style Sheets


Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference

Cascade Stylesheets (CSS)

CSS. M hiwa ahamad aziz Raparin univercity. 1 Web Design: Lecturer ( m hiwa ahmad aziz)

ID1354 Internet Applications

CSS. Shan-Hung Wu CS, NTHU

Web Engineering CSS. By Assistant Prof Malik M Ali

Networks and Web for Health Informatics (HINF 6220) Tutorial 8 : CSS. 8 Oct 2015

Cascading Style Sheets (CSS)

CSS means Cascading Style Sheets. It is used to style HTML documents.

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax

TAG STYLE SELECTORS. div Think of this as a box that contains things, such as text or images. It can also just be a

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development

CSS Styles Quick Reference Guide

CSS: Layout Part 2. clear. CSS for layout and formatting: clear

UNIVERSITI TEKNOLOGI MALAYSIA TEST 1 SEMESTER II 2012/2013

Building Page Layouts

COSC 2206 Internet Tools. CSS Cascading Style Sheets

Internet Programming 1 ITG 212 / A

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

CSS: Lists, Tables and the Box Model

ITNP43: HTML Lecture 5

3.1 Introduction. 3.2 Levels of Style Sheets. - The CSS1 specification was developed in There are three levels of style sheets

- The CSS1 specification was developed in CSS2 was released in CSS2.1 reflects browser implementations

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents

Web Site Design and Development Lecture 7. CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

CSS.

CSC309 Programming on the Web week 3: css, rwd

CSS. Selectors & Measurments. Copyright DevelopIntelligence LLC

INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations

<style type="text/css"> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page***

Cascading Style Sheets

Web Design and Development Tutorial 03

Client-Side Web Technologies. CSS Part II

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

Unit 10 - Client Side Customisation of Web Pages. Week 5 Lesson 1 CSS - Selectors

CSS stands for Cascading Style Sheets Styles define how to display HTML elements

escuela técnica superior de ingeniería informática

CSS3 Basics. From & CSS Visual Dictionary Learning Curve Books, LLC

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100

Zen Garden. CSS Zen Garden

HTML and CSS a further introduction

CASCADING STYLESHEETS

CMPT 165: More CSS Basics

IMY 110 Theme 6 Cascading Style Sheets

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop="title">html 5</span> itemscopehttp://data-vocabulary.

More CSS. <link href="filename" type="text/css" rel="stylesheet" /> CS380

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets

HTML/XML. HTML Continued Introduction to CSS

FLOATING AND POSITIONING

Module 2 (VI): CSS [Part 3]

The Importance of the CSS Box Model

CSS: Cascading Style Sheets

Client-Side Web Technologies. CSS Part I

Programmazione Web a.a. 2017/2018 HTML5

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Cascading Style Sheets (Part II)

Creating Layouts Using CSS. Lesson 9

Tutorial 4: Creating Special Effects with CSS

GIMP WEB 2.0 MENUS WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR CREATING AN HTML LIST

Module 2 (VII): CSS [Part 4]

8a. Cascading Style Sheet

Web Programming and Design. MPT Senior Cycle Tutor: Tamara Week 2

Chapter 3 Style Sheets: CSS

Setting a Background Image

IDM 221. Web Design I. IDM 221: Web Authoring I 1

<link rel= stylesheet href= css/f.css > Colors: Color name: red, blue, orange... etc HEX: #RRGGBB Rgb: rgb(red value, green value, blue value)

CSS for Page Layout Robert K. Moniot 1

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

CSC309 Winter Lecture 2. Larry Zhang

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar with Dynamic Background Image

door to my garden Simple CSS resulting in impressive, sophisticated visual effects

Web Design and Implementation

CSS THE M\SS1NG MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar

Reading 2.2 Cascading Style Sheets

3. Each of these mark examples contains an error. a. <input name= country value= Your country here. /> b. <checkbox name= color value= teal />

Getting your work online. behance.net cargo collective krop coroflot

CSS cont. October 5, Unit 4

The default style for an unordered (bulleted) list is the bullet, or dot. You can change the style to either a square or a circle as follows:

Transcription:

CSS Links Links can be styled in different ways. HTML Lecture Notes-4 Styling Links Links can be styled with any CSS property (e.g. color, font-family, background, etc.). a { color: #FF0000; In addition, links can be styled differently depending on what state they are in. The four links states are: 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 /* unvisited link */ a:link { color: #FF0000; /* visited link */ a:visited { color: #00FF00; /* mouse over link */ a:hover { color: #FF00FF; 1 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

/* selected link */ a:active { color: #0000FF; When setting the style for several link states, there are some order rules: a:hover MUST come after a:link and a:visited a:active MUST come after a:hover Common Link Styles In the example above the link changes color depending on what state it is in. Lets go through some of the other common ways to style links: Text Decoration The text-decoration property is mostly used to remove underlines from links: a:link { text-decoration: none; a:visited { text-decoration: none; a:hover { text-decoration: underline; a:active { text-decoration: underline; Background Color The background-color property specifies the background color for links: 2 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

a:link { background-color: #B2FF99; a:visited { background-color: #FFFF85; a:hover { background-color: #FF704D; a:active { background-color: #FF704D; CSS Lists The CSS list properties allow you to: Set different list item markers for ordered lists Set different list item markers for unordered lists Set an image as the list item marker List In HTML, there are two types of lists: unordered lists (<ul>) - the list items are marked with bullets ordered lists (<ol>) - the list items are marked with numbers or letters With CSS, lists can be styled further, and images can be used as the list item marker. Different List Item Markers The type of list item marker is specified with the list-style-type property: 3 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

ul.a { list-style-type: circle; ul.b { list-style-type: square; ol.c { list-style-type: upper-roman; ol.d { list-style-type: lower-alpha; Some of the values are for unordered lists, and some for ordered lists. An Image as The List Item Marker To specify an image as the list item marker, use the list-style-image property: ul { list-style-image: url('sqpurple.gif'); The example above does not display equally in all browsers. IE and Opera will display the image-marker a little bit higher than Firefox, Chrome, and Safari. If you want the image-marker to be placed equally in all browsers, a crossbrowser solution is explained below. Crossbrowser Solution The following example displays the image-marker equally in all browsers: 4 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

ul { list-style-type: none; padding: 0px; margin: 0px; ul li { background-image: url(sqpurple.gif); background-repeat: no-repeat; background-position: 0px center; padding-left: 15px; explained: For <ul>: o Set the list-style-type to none to remove the list item marker o Set both padding and margin to 0px (for cross-browser compatibility) For all <li> in <ul>: o Set the URL of the image, and show it only once (no-repeat) o Position the image where you want it (left 0px and vertical value: center) o Position the text in the list with padding-left List - Shorthand property The list-style property is a shorthand property. It is used to set all the list properties in one declaration: ul { list-style: square inside url("sqpurple.gif"); When using the shorthand property, the order of the property values are: 5 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

list-style-type (if a list-style-image is specified, the value of this property will be displayed if the image for some reason cannot be displayed) list-style-position (specifies whether the list-item markers should appear inside or outside the content flow) list-style-image (specifies an image as the list item marker) If one of the property values above are missing, the default value for the missing property will be inserted, if any. CSS Box Model The CSS Box Model All HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout. The CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders, padding, and the actual content. The box model allows us to add a border around elements, and to define space between elements. The image below illustrates the box model: Explanation of the different parts: 6 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Content - The content of the box, where text and images appear Padding - Clears an area around the content. The padding is transparent Border - A border that goes around the padding and content Margin - Clears an area outside the border. The margin is transparent div { width: 300px; padding: 25px; border: 25px solid navy; margin: 25px; Width and Height of an Element In order to set the width and height of an element correctly in all browsers, you need to know how the box model works. Important: When you set the width and height properties of an element with CSS, you just set the width and height of the content area. To calculate the full size of an element, you must also add padding, borders and margins. Let's style a <div> element to have a total width of 350px: div { width: 320px; padding: 10px; border: 5px solid gray; margin: 0; Let's do the math: 320px (width) + 20px (left + right padding) + 10px (left + right border) + 0px (left + right margin) = 350px The total width of an element should be calculated like this: 7 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Total element width = width + left padding + right padding + left border + right border + left margin + right margin The total height of an element should be calculated like this: Total element height = height + top padding + bottom padding + top border + bottom border + top margin + bottom margin Browsers Compatibility Issue Internet Explorer 8 and earlier versions, include padding and border in the width property. To fix this problem, add a <!DOCTYPE html> to the HTML page. CSS Border CSS Border Properties The CSS border properties allow you to specify the style, size, and color of an element's border. Border Style The border-style property specifies what kind of border to display. border-style values: none: Defines no border dotted: Defines a dotted border dashed: Defines a dashed border solid: Defines a solid border double: Defines two borders. The width of the two borders are the same as the border-width value 8 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

groove: Defines a 3D grooved border. The effect depends on the border-color value ridge: Defines a 3D ridged border. The effect depends on the border-color value inset: Defines a 3D inset border. The effect depends on the border-color value outset: Defines a 3D outset border. The effect depends on the border-color value Border Width The border-width property is used to set the width of the border. The width is set in pixels, or by using one of the three pre-defined values: thin, medium, or thick. Note: The "border-width" property does not work if it is used alone. Use the "border-style" property to set the borders first. p.one { border-style: solid; border-width: 5px; p.two { border-style: solid; border-width: medium; Border Color The border-color property is used to set the color of the border. The color can be set by: name - specify a color name, like "red" RGB - specify a RGB value, like "rgb(255,0,0)" Hex - specify a hex value, like "#ff0000" 9 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

You can also set the border color to "transparent". If the border color is not set it is inherited from the color property of the element. Note: The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first. p.one { border-style: solid; border-color: red; p.two { border-style: solid; border-color: #98bf21; Border - Individual sides In CSS it is possible to specify different borders for different sides: p { border-top-style: dotted; border-right-style: solid; border-bottom-style: dotted; border-left-style: solid; The example above can also be set with a single property: p { border-style: dotted solid; The border-style property can have from one to four values. border-style: dotted solid double dashed; o top border is dotted o right border is solid o bottom border is double 10 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

o left border is dashed border-style: dotted solid double; o top border is dotted o right and left borders are solid o bottom border is double border-style: dotted solid; o top and bottom borders are dotted o right and left borders are solid border-style: dotted; o all four borders are dotted The border-style property is used in the example above. However, it also works with border-width and border-color. Border - Shorthand property As you can see from the examples above, there are many properties to consider when dealing with borders. To shorten the code, it is also possible to specify all the individual border properties in one property. This is called a shorthand property. The border property is a shorthand for the following individual border properties: border-width border-style (required) border-color p { border: 5px solid red; 11 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Margin The margin clears an area around an element (outside the border). The margin does not have a background color, and is completely transparent. The top, right, bottom, and left margin can be changed independently using separate properties. A shorthand margin property can also be used, to change all margins at once. Possible Values Value Description auto The browser calculates a margin length Specifies a margin in px, pt, cm, etc. Default value is 0px % Specifies a margin in percent of the width of the containing element inherit Specifies that the margin should be inherited from the parent element Margin - Individual sides In CSS, it is possible to specify different margins for different sides of an element: p { margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-left: 50px; 12 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Padding The padding clears an area around the content (inside the border) of an element. The padding is affected by the background color of the element. The top, right, bottom, and left padding can be changed independently using separate properties. A shorthand padding property can also be used, to change all paddings at once. Possible Values Value Description length Defines a fixed padding (in pixels, pt, em, etc.) % Defines a padding in % of the containing element Padding - Individual sides In CSS, it is possible to specify different padding for different sides: p { padding-top: 25px; padding-right: 50px; padding-bottom: 25px; padding-left: 50px; Hiding an Element - display:none or visibility:hidden Hiding an element can be done by setting the display property to "none" or the visibility property to "hidden". However, notice that these two methods produce different results: visibility:hidden hides an element, but it will still take up the same space as before. The element will be hidden, but still affect the layout: 13 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

h1.hidden { visibility: hidden; display:none hides an element, and it will not take up any space. The element will be hidden, and the page will be displayed as if the element is not there: h1.hidden { display: none; CSS Display - Block and Inline Elements A block element is an element that takes up the full width available, and has a line break before and after it. s of block elements: <h1> <p> <li> <div> An inline element only takes up as much width as necessary, and does not force line breaks. s of inline elements: <span> <a> Changing How an Element is Displayed Changing an inline element to a block element, or vice versa, can be useful for making the page look a specific way, and still follow web standards. The following example displays <li> elements as inline elements: 14 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

li { display: inline; The following example displays <span> elements as block elements: span { display: block; Positioning The CSS positioning properties allow you to position an element. It can also place an element behind another, and specify what should happen when an element's content is too big. Elements can be positioned using the top, bottom, left, and right properties. However, these properties will not work unless the position property is set first. They also work differently depending on the positioning method. There are four different positioning methods. Static Positioning HTML elements are positioned static by default. A static positioned element is always positioned according to the normal flow of the page. Static positioned elements are not affected by the top, bottom, left, and right properties. Fixed Positioning An element with a fixed position is positioned relative to the browser window, and will not move even if the window is scrolled: 15 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

p.pos_fixed { position: fixed; top: 30px; right: 5px; Fixed positioned elements are removed from the normal flow. The document and other elements behave like the fixed positioned element does not exist. Fixed positioned elements can overlap other elements. Relative Positioning A relative positioned element is positioned relative to its normal position: h2.pos_left { position: relative; left: -20px; h2.pos_right { position: relative; left: 20px; The content of relatively positioned elements can be moved and overlap other elements, but the reserved space for the element is still preserved in the normal flow. h2.pos_top { position: relative; top: -50px; Relatively positioned elements are often used as container blocks for absolutely positioned elements. 16 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Absolute Positioning An absolute position element is positioned relative to the first parent element that has a position other than static. If no such element is found, the containing block is <html>: h2 { position: absolute; left: 100px; top: 150px; Absolutely positioned elements are removed from the normal flow. The document and other elements behave like the absolutely positioned element does not exist. Absolutely positioned elements can overlap other elements. Overlapping Elements When elements are positioned outside the normal flow, they can overlap other elements. The z-index property specifies the stack order of an element (which element should be placed in front of, or behind, the others). An element can have a positive or negative stack order: img { position: absolute; left: 0px; top: 0px; z-index: -1; 17 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

How Elements Float Elements are floated horizontally, this means that an element can only be floated left or right, not up or down. A floated element will move as far to the left or right as it can. Usually this means all the way to the left or right of the containing element. The elements after the floating element will flow around it. The elements before the floating element will not be affected. If an image is floated to the right, a following text flows around it, to the left: img { float: right; Floating Elements Next to Each Other If you place several floating elements after each other, they will float next to each other if there is room. Here we have made an image gallery using the float property:.thumbnail { float: left; width: 110px; height: 90px; margin: 5px; Turning off Float - Using Clear Elements after the floating element will flow around it. To avoid this, use the clear property. The clear property specifies which sides of an element other floating elements are not allowed. Add a text line into the image gallery, using the clear property: 18 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

.text_line { clear: both; CSS Horizontal Align Aligning Block Elements A block element is an element that takes up the full width available, and has a line break before and after it. s of block elements: <h1> <p> <div> For aligning text, see the CSS Text chapter. In this chapter we will show you how to horizontally align block elements for layout purposes. Center Aligning Using the margin Property Block elements can be center-aligned by setting the left and right margins to "auto". Setting the left and right margins to auto specifies that they should split the available margin equally. The result is a centered element:.center { margin-left: auto; margin-right: auto; width: 70%; background-color: #b0e0e6; Tip: Center-aligning has no effect if the width is 100%. 19 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Left and Right Aligning Using the position Property One method of aligning elements is to use absolute positioning:.right { position: absolute; right: 0px; width: 300px; background-color: #b0e0e6; Left and Right Aligning Using the float Property One method of aligning elements is to use the float property:.right { float: right; width: 300px; background-color: #b0e0e6; Image Gallery The following image gallery is created with CSS: <html> <head> <style> div.img { margin: 5px; padding: 5px; border: 1px solid #0000ff; height: auto; width: auto; float: left; 20 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

text-align: center; div.img img { display: inline; margin: 5px; border: 1px solid #ffffff; div.img a:hover img { border:1px solid #0000ff; div.desc { text-align: center; font-weight: normal; width: 120px; margin: 5px; </style> </head> <body> <div class="img"> <a target="_blank" href="klematis_big.htm"> <img src="klematis_small.jpg" alt="klematis" width="110" height="90"> </a> <div class="desc">add a description of the image here</div> </div> <div class="img"> <a target="_blank" href="klematis2_big.htm"> <img src="klematis2_small.jpg" alt="klematis" width="110" height="90"> </a> <div class="desc">add a description of the image here</div> </div> <div class="img"> <a target="_blank" href="klematis3_big.htm"> <img src="klematis3_small.jpg" alt="klematis" width="110" height="90"> </a> <div class="desc">add a description of the image here</div> </div> <div class="img"> <a target="_blank" href="klematis4_big.htm"> <img src="klematis4_small.jpg" alt="klematis" width="110" height="90"> </a> <div class="desc">add a description of the image here</div> 21 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

</div> </body> </html> 1 - Creating a Transparent Image The CSS3 property for transparency is opacity. First we will show you how to create a transparent image with CSS. Regular image: The same image with transparency: Look at the following CSS: img { opacity: 0.4; filter: alpha(opacity=40); /* For IE8 and earlier */ E9, Firefox, Chrome, Opera, and Safari use the property opacity for transparency. The opacity property can take a value from 0.0-1.0. A lower value makes the element more transparent. IE8 and earlier use filter:alpha(opacity=x). The x can take a value from 0-100. A lower value makes the element more transparent. 22 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

2 - Image Transparency - Hover Effect Mouse over the images: The CSS looks like this: img { opacity: 0.4; filter: alpha(opacity=40); /* For IE8 and earlier */ img:hover { opacity: 1.0; filter: alpha(opacity=100); /* For IE8 and earlier */ The first CSS block is similar to the code in 1. In addition, we have added what should happen when a user hover over one of the images. In this case we want the image to NOT be transparent when the user hover over it. The CSS for this is: opacity=1. IE8 and earlier: filter:alpha(opacity=100). When the mouse pointer moves away from the image, the image will be transparent again. 3 - Text in Transparent Box This is some text that is placed in the transparent box. 23 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

The source code looks like this: <html> <head> <style> div.background { background: url(klematis.jpg) repeat; border: 2px solid black; div.transbox { margin: 30px; background-color: #ffffff; border: 1px solid black; opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ div.transbox p { margin: 5%; font-weight: bold; color: #000000; </style> </head> <body> <div class="background"> <div class="transbox"> <p>this is some text that is placed in the transparent box.</p> </div> </div> </body> </html> Style HTML Elements With Specific Attributes It is possible to style HTML elements that have specific attributes or attribute values. 24 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

CSS [attribute] Selector The [attribute] selector is used to select elements with a specified attribute. The following example selects all <a> elements with a target attribute: a[target] { background-color: yellow; CSS [attribute=value] Selector The [attribute=value] selector is used to select elements with a specified attribute and value. The following example selects all <a> elements with a target="_blank" attribute: a[target="_blank"] { background-color: yellow; CSS [attribute~=value] Selector The [attribute~=value] selector is used to select elements with an attribute value containing a specified word. The following example selects all elements with a title attribute that contains a space-separated list of words, one of which is "flower": [title~="flower"] { border: 5px solid yellow; The example above will match elements with title="flower", title="summer flower", and title="flower new", but not title="my-flower" or title="flowers". 25 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

CSS [attribute =value] Selector The [attribute =value] selector is used to select elements with the specified attribute starting with the specified value. The following example selects all elements with a class attribute value that begins with "top": Note: The value has to be a whole word, either alone, like class="top", or followed by a hyphen( - ), like class="top-text"! [class ="top"] { background: yellow; CSS [attribute^=value] Selector The [attribute^=value] selector is used to select elements whose attribute value begins with a specified value. The following example selects all elements with a class attribute value that begins with "top": Note: The value does not have to be a whole word! [class^="top"] { background: yellow; CSS [attribute$=value] Selector The [attribute$=value] selector is used to select elements whose attribute value ends with a specified value. The following example selects all elements with a class attribute value that ends with "test": Note: The value does not have to be a whole word! 26 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

[class$="test"] { background: yellow; CSS [attribute*=value] Selector The [attribute*=value] selector is used to select elements whose attribute value contains a specified value. The following example selects all elements with a class attribute value that contains "te": Note: The value does not have to be a whole word! [class*="te"] { background: yellow; Styling Forms The attribute selectors can be useful for styling forms without class or ID: input[type="text"] { width: 150px; display: block; margin-bottom: 10px; background-color: yellow; input[type="button"] { width: 120px; margin-left: 35px; display: block; CSS3 Animations CSS3 animations allows animation of most HTML elements without using JavaScript or Flash! 27 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

Browser Support for Animations The numbers in the table specify the first browser version that fully supports the property. Numbers followed by -webkit-, -moz-, or -o- specify the first version that worked with a prefix. What are CSS3 Animations? An animation lets an element gradually change from one style to another. You can change as many CSS properties you want, as many times you want. To use CSS3 animation, you must first specify some keyframes for the animation. Keyframes hold what styles the element will have at certain times. The @keyframes Rule When you specify CSS styles inside the @keyframes rule, the animation will gradually change from the current style to the new style at certain times. To get an animation to work, you must bind the animation to an element. The following example binds the "example" animation to the <div> element. The animation will lasts for 4 seconds, and it will gradually change the background-color of the <div> element from "red" to "yellow": /* The animation code */ @keyframes example { from {background-color: red; to {background-color: yellow; /* The element to apply the animation to */ div { width: 100px; height: 100px; background-color: red; 28 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

animation-name: example; animation-duration: 4s; Note: If the animation-duration property is not specified, the animation will have no effect, because the default value is 0. In the example above we have specified when the style will change by using the keywords "from" and "to" (which represents 0% (start) and 100% (complete)). It is also possible to use percent. By using percent, you can add as many style changes as you like. The following example will change the background-color of the <div> element when the animation is 25% complete, 50% complete, and again when the animation is 100% complete: /* The animation code */ @keyframes example { 0% {background-color: red; 25% {background-color: yellow; 50% {background-color: blue; 100% {background-color: green; /* The element to apply the animation to */ div { width: 100px; height: 100px; background-color: red; animation-name: example; animation-duration: 4s; The following example will change both the background-color and the position of the <div> element when the animation is 25% complete, 50% complete, and again when the animation is 100% complete: /* The animation code */ @keyframes example { 0% {background-color: red; left:0px; top:0px; 25% {background-color: yellow; left:200px; top:0px; 50% {background-color: blue; left:200px; top:200px; 29 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

75% {background-color: green; left:0px; top:200px; 100% {background-color: red; left:0px; top:0px; /* The element to apply the animation to */ div { width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 4s; Delay an Animation The animation-delay property specifies a delay for the start of an animation. The following example has a 2 seconds delay before starting the animation: div { width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 4s; animation-delay: 2s; Set How Many Times an Animation Should Run The animation-iteration-count property specifies the number of times an animation should run. The following example will run the animation 3 times before it stops: div { width: 100px; height: 100px; 30 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

position: relative; background-color: red; animation-name: example; animation-duration: 4s; animation-iteration-count: 3; The following example uses the value "infinite" to make the animation continue for ever: div { width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 4s; animation-iteration-count: infinite; Run Animation in Reverse Direction or Alternate Cycles The animation-direction property is used to let an animation run in reverse direction or alternate cycles. The following example will run the animation in reverse direction: div { width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 4s; animation-iteration-count: 3; animation-direction: reverse; The following example uses the value "alternate" to make the animation first run forward, then backward, then forward: 31 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

div { width: 100px; height: 100px; position: relative; background-color: red; animation-name: example; animation-duration: 4s; animation-iteration-count: 3; animation-direction: alternate; Specify the Speed Curve of the Animation The animation-timing-function property specifies the speed curve of the animation. The animation-timing-function property can have the following values: ease - specifies an animation with a slow start, then fast, then end slowly (this is default) linear - specifies an animation with the same speed from start to end ease-in - specifies an animation with a slow start ease-out - specifies an animation with a slow end ease-in-out - specifies an animation with a slow start and end cubic-bezier(n,n,n,n) - lets you define your own values in a cubic-bezier function The following example shows the some of the different speed curves that can be used: #div1 {animation-timing-function: linear; #div2 {animation-timing-function: ease; #div3 {animation-timing-function: ease-in; #div4 {animation-timing-function: ease-out; #div5 {animation-timing-function: ease-in-out; Animation Shorthand Property The example below uses six of the animation properties: 32 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A

div { animation-name: example; animation-duration: 5s; animation-timing-function: linear; animation-delay: 2s; animation-iteration-count: infinite; animation-direction: alternate; The same animation effect as above can be achieved by using the shorthand animation property: div { animation: example 5s linear 2s infinite alternate; 33 P a g e p a r a s h a r t e c h n o l o g i e s @ g m a i l. c o m S. P. S H A R M A