Table Tables are defined with the tag. A table is divided into rows with the tag. (tr stands for table row) A row is divided into data cells with the tag.

Slides:



Advertisements
Similar presentations
Internet Basics & Way Beyond!
Advertisements

/k/k 1212 Cascading Style Sheets Part one Marko Boon
HTML: Basics. Agenda 12:00 - HTML Basics 1:00 - HTML – Lists & Styling Break 2:00 CSS Basics 3:00 Lunch 3:30 CSS Selectors & Classes Break 5:00 HTML5.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Client-Side Internet and Web Programming
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Intro to CSS3 Vishal Kurup. Cascading Style Sheets Developed to enable the separation of document content from document presentation Initial release in.
Miscellaneous 2. Multiple Columns Create multiple columns for laying out text - like in newspapers! Properties: – column-count – column-gap – column-rule.
CIT 256 CSS Divs & Buttons Dr. Beryl Hoffman. CSS for Layout We now can make our own divs to divide up a web page : Header Header Navigation Navigation.
4.01 Cascading Style Sheets
1 CS428 Web Engineering Lecture 10 Images, Tables, Forms, Border-Radius (CSS – V)
Tutorial #8 – Creating Data Tables. Tutorial #6 Review – Layouts Two Column Fixed Width, Three Column Fixed Width Class VS. ID Container Universal Selector.
1 The Structure of a Web Table beginning of the table structure first row of three in the table end of the table structure table cells You do not need.
Web Design Transparent Backgrounds. Why : Allow text to appear clearly above a graphic background image that still can be seen in the background. Without.
Bayu Priyambadha, S.Kom. for long documents, you can even have links to other locations in that same document  … where ident is a variable for identifying.
Creating Tables in a Web Site Using an External Style Sheet
1Computer Sciences Department. And use
By Tuyet Le & Madhura Pitale. Seating Chart with CSS3.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
INTRODUCTION TO HTML5 Styling with CSS3. Round Border Corners  You can modify any element that supports the border property and render rounded borders.
Cascading Style Sheets Class 1, Lecture 1 Rachel A Ober
Ins & Outs of. CSS3 is Modular Can we use it now?
CSS Netcentric. What is CSS O CSS stands for Cascading Style Sheets O Styles define how to display HTML elements O Styles were added to HTML 4.0 to solve.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Css ( CASCADING STYLE SHEETs ) CSS Box Model. All HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
CHAPTER 3 CSS & CSS3 อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
COMP213 – Web Interface Design
Tutorial #6 – Creating Fixed Width Layouts. Tutorial #5 Review – Box Model Every html element is surround by a box Content, Padding, Border, Margin Can.
Today’s Agenda Advanced CSS Techniques Floating Z-index Centering Sliding Doors Fluid Layouts CSS3 Advanced CSS Lab Mini Project #2.
Chcslonline.org Text –wrapping around Images. chcslonline.org To wrap text around an image, lets set up a style in our style sheet. open a new notepad.
CIS234A- Lecture 7 Instructor Greg D’Andrea. Tables A table can be displayed on a Web page either in a text or graphical format. A text table: – contains.
Part 4 Introduction to CSS. CSS Table Table Borders table, td, th { border:1px solid black; } Firstname Lastname Bader Ali Paul Manuel The example below.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
Web Foundations THURSDAY, OCTOBER 3, 2013 LECTURE 6: CSS CONTINUED.
CIS234A Lecture 8 Instructor Greg D’Andrea. Review Text Table contains only text, evenly spaced on the Web page in rows and columns uses only standard.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
11/12/2015 Box Model Reed Crouch. 11/12/2015  HTML elements can be considered as boxes. In CSS, the term "box model" is used when referring to layout.
Table Styling. Using CSS to Style Tables: So far, our table styling - such has "width" and "border" - has not used CSS. CSS provides us with many tools.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
Simple Website Layout Tutorial Using HTML 5 and CSS 3 Ref: layout-tutorial-html-5-css-3/
LT: I can use CSS to decorate a web page. Do Now: Get your storyboard, and log in to winhome. Write our a list of colors you want in your website. (Minimum.
Lecture 9: Extra Features and Web Design Tarik Booker CS 120 California State University, Los Angeles.
CNIT 131 HTML5 - Tables.
4.01 Cascading Style Sheets
Table Styling.
Table Styling.
Semester - Review.
Google fonts CSS box model
Applying CSS to Tables Stylish Tables.
Table Styling.
Unit 3 - Review.
CSS3 Style of the HTML document CSS2+New Specifications Differences
Advanced CSS & CSS3.
HTML Tables CS 1150 Spring 2017.
Tutorial 5 Working with Tables and Columns
Box model.
Chapter 7 Tables.
COMP 101 Review.
Style Sheet Create a new CSS called Cameras.CSS TD Web Authoring
Table CSS Create a new CSS called tablestyle.CSS Green Background
CSS Box Model.
استاد:مهندس زمانیان ارائه دهنده:پونه موسوی تاریخ: 1392/4/5
SEEM4570 Tutorial 3: CSS + CSS3.0
Box Model.
CSS and Class Tools.
4.01 Cascading Style Sheets
Presentation transcript:

Table Tables are defined with the tag. A table is divided into rows with the tag. (tr stands for table row) A row is divided into data cells with the tag. (td stands for table data) A row can also be divided into headings with the tag. (th stands for table heading) The elements are the data containers in the table. The elements can contain all sorts of HTML elements like text, images, lists, other tables, etc.

Table Character Name Anime Name Himura Kenshin Rurouni Kenshin Before : border="2px"cellpadding="4px" table { width:750px; } Then add table,th,td {border:1px solid black;} Then add border-collapse:collapse; Then add th,td {padding:5px;}

Table Continued 1)tr:first-of-type {background-color: maroon;color:white;} 2)tr:nth-of-type(2n) { background-color: #9CF; } 3)tr:nth-of-type( 2n+3 ) { background-color: darksalmon; } If you want to color a specific cell, give an ID to the cell and define the background color or font color to that id! In HTML: In CSS: </td></td> #t1 { background-color:#CF0;}

Table Tags

Round Border Corners 1) 2) 3) Type something in your html file Put that within div.roundborder …..... { border: size style color; border-radius: radius; -moz-border-radius: radius; -webkit-border-radius: radius; 1px solid #F00; in Opera and Internet in Firefox in Chrome and Safari Explorer 9 } 4)border: dashed thick #0000FF;

hin <dihin <di Add a Shadow Effect 1) Type something in your html file 2) Put that wit div.shadow v class="shadow">…..... { box-shadow: xpos ypos blur -moz-box-shadow: …....; -webkit-box-shadow: …...; spread color;5px 5px 10px 5px #339933; in Firefox in Chrome and Safari } Where, xpos and ypos are relativecoordinates to indicate where the shadow should be placed. Positive integers indicate that the shadow is placed to the right of, and below, the shadowed element. blur represents the size to which a blur effect will be added. For example, a setting of 10px indicates that the shadow is blurred from color to transparency for 10 pixels, straddling the shadow’s perimeter. spread allows for a general increase of the shadow’s height and width.

Add a Shadow Effect Conti... 1) In …....., add xpos ypos blur spread color to create additional shadow effects. div.shadowdiv.shadow { box-shadow: xpos ypos blur spread -moz-box-shadow: …...., …...; -webkit-box-shadow: …..., …...; color, xpos ypos blur spread in Firefox in Chrome and Safari color;color; } Example: box-shadow: -5px 5px 10px 5px #339933, 5px -5px 10px 5px #FF9966;

Scroll Bar 1) Type something long in your html file 2) Put that within … )div.scrollbar { width:750px; height:350px; overflow:auto; margin-top:40px; margin-left:10px; background-color: #FF9;#FF9; }

3 Tier Architecture