css-presentation css file with your content add-ins for PowerPoint lets you coordinate the appearance of your add-in with the theme applied to the presentation it's running with
This also means that only one style document has to be downloaded for a single site. Using Cascading Style Sheets. 1/1/97. slide 9. STANFORD UNIVERSITY •
This document provides an overview of cascading style sheets (CSS) through a series of slides presented by Mark Branom of Stanford University's IT Services department. It defines CSS as allowing more control over web page styling through a centralized style sheet. CSS rules cascade from broad to narrow in scope, with more specific rules overriding general ones. The document reviews basic CSS syntax, properties, selectors, and the advantages of using external style sheets to control styling across an entire website through one file.
This document provides an overview of cascading style sheets (CSS) and how they can be used to control the style and formatting of web pages. Some key points:
- CSS allows for more control over fonts, colors, spacing and other aspects of web page appearance through style rules defined in external style sheets or internally in pages.
- Style rules are made up of selectors that target page elements like headings or paragraphs along with declarations that set properties like color and font to specific values.
- CSS styles cascade in order of precedence so rules defined locally or inline override those in external style sheets which override browser defaults.
- External style sheets are best practice as they allow controlling styles for all pages from a
This document provides an overview of cascading style sheets (CSS) through a series of slides presented by Mark Branom of Stanford University's IT Services Technology Training group. It defines CSS as allowing more control over web page styling through a centralized style sheet. Key points include: CSS styles cascade from broad to narrow scopes; common style locations are external style sheets for whole sites and internal style sheets for individual pages; and CSS can change default element displays between inline and block. The document aims to introduce CSS basics and best practices.
css-presentation for beginner students.pptshantomajumdar
Cascading Style Sheets, more commonly known as CSS, is a powerful language used to control the presentation and layout of HTML documents. Since its inception in the mid-1990s by the World Wide Web Consortium (W3C), CSS has revolutionized web design by allowing developers to separate content from design. This separation enhances flexibility, simplifies maintenance, and provides a more consistent user experience across different platforms and devices.
CSS plays a fundamental role in web development, working in conjunction with HTML and JavaScript to create dynamic, visually appealing websites. While HTML provides the structure and content, CSS handles how that content appears. Over time, CSS has evolved significantly, and today’s web developers use advanced features like animations, responsive layouts, and grid systems that make websites more interactive and user-friendly.
---
**1. The Purpose and Philosophy of CSS**
The main goal of CSS is to separate document content from document presentation. This means keeping HTML focused on structure—like headings, paragraphs, and lists—while CSS takes care of styling aspects such as colors, fonts, spacing, and positioning.
This division of responsibilities enables a cleaner workflow. For example, designers can tweak styles without altering the HTML, and developers can modify functionality without affecting how a page looks. It also facilitates easier reusability; one CSS file can style multiple web pages, ensuring a consistent design theme across an entire website.
---
**2. The Structure of CSS**
CSS works through a set of rules. Each rule targets specific HTML elements and assigns them styles. A CSS rule consists of a selector and a declaration block. The selector identifies the HTML element to style, while the declaration block contains one or more styling instructions.
The rules themselves follow a cascading and inheritable structure. This means that styles can trickle down from parent to child elements and that rules defined later can override earlier ones if conflicts occur. This behavior is referred to as the “cascade,” and it's governed by the source order, specificity, and importance of rules.
---
**3. Selectors and Their Role**
Selectors are patterns used to identify HTML elements for styling. CSS offers a wide range of selectors, which can be simple or complex depending on the desired effect. Common types include element selectors, class selectors, and ID selectors.
Element selectors target all instances of a particular HTML tag. Class selectors target elements that carry a specific class attribute, and ID selectors apply styles to a single element with a unique ID. There are also more advanced selectors, such as attribute selectors, pseudo-classes, and pseudo-elements, which enable thi
This tutorial is in regards to CSS. In this tutorial we are going to discuss all about CSS from the very beginning. This video tutorial covers all the topics from start. Key terms are:
CSS Introduction, Pros and Cons, CSS rules, Grouping styles, selectors, style locations, positioning, span, div, IDs, Classes, Unit measurements, Font and text styling, Modifying List.
For more detail visit our Tech Blog:
https://msatechnosoft.in/blog/
Introduction to cascade style sheets CSS.pdfMahmoud268161
Cascading Style Sheets (CSS) allow users to control the style and layout of web pages and XML files. CSS rules consist of selectors and declarations that specify property-value pairs to control things like colors, fonts, spacing and positioning. CSS styles cascade from broad to narrow in scope, with inline styles overriding internal and external styles. CSS enables separation of document structure and presentation, and improves accessibility.
This document provides an introduction to Cascading Style Sheets (CSS). It defines CSS as rules that control the look and formatting of HTML elements through properties and values. CSS rules can be applied externally via style sheets, internally to web pages, or inline with HTML tags. The "cascading" nature of CSS means that rules are applied according to their specificity, with more specific or important rules overriding more general ones. Classes and IDs allow targeting specific elements with CSS.
The document discusses various CSS topics including CSS introduction, syntax, selectors, inclusion methods, backgrounds, fonts and text manipulation. It provides examples and explanations of CSS properties like background-color, font-family, selectors etc. The document is a lecture on CSS intended to teach the fundamentals of CSS and cover common CSS topics.
The document discusses various aspects of CSS (Cascading Style Sheets), including:
- CSS is used to control the style and layout of HTML documents, and allows separation of document content from document presentation.
- CSS syntax involves selectors that specify the element(s) targeted by style rules, properties to specify element attributes, and property values.
- There are different ways to associate CSS with HTML pages, including internal CSS within <style> tags, inline CSS using the style attribute, and external CSS via <link> to a .css file.
This document provides an overview of Cascading Style Sheets (CSS) including:
- CSS allows separation of document content from page layout/formatting through external style sheets or internal styles defined in <style> tags.
- CSS has three levels (CSS1, CSS2, CSS3) that add new capabilities. CSS handles properties like fonts, sizes, colors, spacing and positioning of HTML elements.
- Styles can be applied via internal, embedded, or external stylesheets. Inheritance allows CSS rules to apply to child elements. Conflicting styles are resolved through a cascading priority system.
Cascading Style Sheets (CSS) allow for more control over the look and style of web pages by providing a central location to define how HTML and XML tags are interpreted. CSS rules consist of selectors that specify elements to style and declarations that define properties and values to apply. CSS styles can be defined internally, inline, or externally in style sheets and rules are applied following the cascade order.
CSS allows separation of document structure (HTML) from presentation (styles). It provides precise control over elements' appearance. CSS rules have selectors that specify elements to style and declarations that define properties (e.g., color) and values (e.g., blue). Multiple style sheets can affect elements through cascading rules, with inline styles having highest priority. DHTML refers to combining HTML, CSS, and scripts to create dynamic and animated web pages.
CSS (Cascading Style Sheets) allows separation of design and content on web pages. It was created in 1994 and has become the W3C standard for controlling visual presentation. Using CSS provides advantages like faster downloads, streamlined maintenance, global design control, and cost savings through reduced bandwidth and higher search engine rankings. CSS can be applied through inline styles, embedded style sheets, or external style sheets linked via HTML. Resources for learning more about CSS include various websites documenting its capabilities and best practices.
CSS (Cascading Style Sheets) allows control over how HTML elements are displayed on different media. CSS saves work by allowing global control of layout and styles across multiple web pages from a single stylesheet. It provides advantages like faster page loads, easy maintenance through global changes, superior styling capabilities, and compatibility across devices. CSS is created and maintained by the W3C consortium and browser vendors implement CSS specifications. Styles are applied using selectors that target elements by name, id, class, and other attributes. Styles can be defined internally, in external style sheets, or inline in elements.
CSS (Cascading Style Sheets) allows separation of design and content of web pages. It was created in 1994 and has become the W3C standard for controlling visual presentation. CSS separates design elements like colors and fonts from the structural HTML markup. This separation allows designers to change the look without altering the content. CSS offers advantages like faster downloads, streamlined maintenance, global design control, and cost savings through reduced bandwidth and higher search engine rankings. Resources for learning more about CSS include w3.org, csszengarden.com, and webmonkey.wired.com.
This document discusses DHTML and CSS. It defines DHTML as a combination of HTML, CSS, and scripting that allows dynamic web pages. It describes the four main components of DHTML - HTML, CSS, scripting languages like JavaScript, and the DOM. It provides details on each component, including how CSS controls formatting, how scripting adds interactivity, and how the DOM defines elements for script access. It also gives examples of using internal, inline, and external CSS stylesheets.
CSS (Cascading Style Sheets) is a style sheet language that allows control over the presentation and layout of web pages. CSS handles the look and feel aspects of a web page by controlling things like colors, fonts, layout, and variations for different devices. CSS provides advantages like time savings through reuse of styles, faster page loads with less code, and easy maintenance through global style changes. The CSS language is created and maintained by the CSS Working Group within the W3C, and the ratified specifications become recommendations for implementation.
1) The document provides resources for a front-end development session including working files, slides, and an agenda.
2) It reviews HTML tags, CSS selectors, the box model, positioning, and Flexbox.
3) Instructions are given to install Atom plugins and review JavaScript and JQuery before adding an Express server to a webpage.
Vskills certified CSS designer Notes covers the following concepts.
1 CSS Basics
1.1 Introduction
1.2 Why to use CSS
1.3 CSS Editors
1.4 A CSS Example
1.5 Custom CSS
1.6 Cross Browser Testing
1.7 Including CSS
1.8 Validating CSS
Get complete e-book on CSS.
http://www.vskills.in/certification/Web-Development/certified-css-designer
The document covers various topics related to CSS including CSS introduction, syntax, selectors, inclusion methods, setting backgrounds, fonts, manipulating text, and working with images. Key points include how CSS handles web page styling, the advantages of CSS, CSS versions, associating styles using embedded, inline, external and imported CSS, and properties for backgrounds, fonts, text formatting, and images.
Using Templates And Cascading Style Sheets10Sutinder Mann
Templates and cascading style sheets (CSS) are both methods for establishing consistent styles across multiple web pages in Dreamweaver. Templates allow for content to be edited within designated regions while keeping other regions like banners fixed, and changes made to the template are automatically reflected on all linked pages. CSS separates style rules from HTML content by defining styles in an external .css file linked to pages via <link> tags. This results in cleaner HTML and faster loading times compared to templates. Both achieve consistent styles but templates are easier to set up while CSS produces simpler code.
CSS is used to control the style and formatting of web documents. It allows for creating stunning web sites by controlling colors, fonts, layouts, and other design elements. CSS is also important for web designers and developers because it provides powerful but easy to learn controls over HTML formatting and applies styles consistently across pages. The basic structure of a CSS stylesheet uses selectors to target HTML elements and declarations to specify property values that control the appearance of those elements.
This document provides an overview of styles, themes, and master pages in chapter 8. It discusses styles and CSS, including inline, internal, and external CSS. It defines selectors and declarations. It also covers themes in ASP.NET which provide a centralized way to define a website's appearance. Master pages are mentioned as a way to simplify the use of themes across content pages. Examples are provided of CSS code and using classes to change styles on click events in ASP.NET codebehind files.
Frank van Geffen is a Business Analyst at the Rabobank in the Netherlands. The first time Frank encountered Process Mining was in 2002, when he graduated on a method called communication diagnosis. He stumbled upon the topic again in 2008 and was amazed by the possibilities.
Frank shares his experiences after applying process mining in various projects at the bank. He thinks that process mining is most interesting for the Process manager / Process owner (accountable for all aspects of the complete end to end process), the Process Analyst (responsible for performing the process mining analysis), the Process Auditor (responsible for auditing processes), and the IT department (responsible for development/aquisition, delivery and maintanance of the process mining software).
GenAI for Quant Analytics: survey-analytics.aiInspirient
Pitched at the Greenbook Insight Innovation Competition as apart of IIEX North America 2025 on 30 April 2025 in Washington, D.C.
Join us at survey-analytics.ai!
Ad
More Related Content
Similar to css-presentation css file with your content add-ins for PowerPoint lets you coordinate the appearance of your add-in with the theme applied to the presentation it's running with (20)
This document provides an introduction to Cascading Style Sheets (CSS). It defines CSS as rules that control the look and formatting of HTML elements through properties and values. CSS rules can be applied externally via style sheets, internally to web pages, or inline with HTML tags. The "cascading" nature of CSS means that rules are applied according to their specificity, with more specific or important rules overriding more general ones. Classes and IDs allow targeting specific elements with CSS.
The document discusses various CSS topics including CSS introduction, syntax, selectors, inclusion methods, backgrounds, fonts and text manipulation. It provides examples and explanations of CSS properties like background-color, font-family, selectors etc. The document is a lecture on CSS intended to teach the fundamentals of CSS and cover common CSS topics.
The document discusses various aspects of CSS (Cascading Style Sheets), including:
- CSS is used to control the style and layout of HTML documents, and allows separation of document content from document presentation.
- CSS syntax involves selectors that specify the element(s) targeted by style rules, properties to specify element attributes, and property values.
- There are different ways to associate CSS with HTML pages, including internal CSS within <style> tags, inline CSS using the style attribute, and external CSS via <link> to a .css file.
This document provides an overview of Cascading Style Sheets (CSS) including:
- CSS allows separation of document content from page layout/formatting through external style sheets or internal styles defined in <style> tags.
- CSS has three levels (CSS1, CSS2, CSS3) that add new capabilities. CSS handles properties like fonts, sizes, colors, spacing and positioning of HTML elements.
- Styles can be applied via internal, embedded, or external stylesheets. Inheritance allows CSS rules to apply to child elements. Conflicting styles are resolved through a cascading priority system.
Cascading Style Sheets (CSS) allow for more control over the look and style of web pages by providing a central location to define how HTML and XML tags are interpreted. CSS rules consist of selectors that specify elements to style and declarations that define properties and values to apply. CSS styles can be defined internally, inline, or externally in style sheets and rules are applied following the cascade order.
CSS allows separation of document structure (HTML) from presentation (styles). It provides precise control over elements' appearance. CSS rules have selectors that specify elements to style and declarations that define properties (e.g., color) and values (e.g., blue). Multiple style sheets can affect elements through cascading rules, with inline styles having highest priority. DHTML refers to combining HTML, CSS, and scripts to create dynamic and animated web pages.
CSS (Cascading Style Sheets) allows separation of design and content on web pages. It was created in 1994 and has become the W3C standard for controlling visual presentation. Using CSS provides advantages like faster downloads, streamlined maintenance, global design control, and cost savings through reduced bandwidth and higher search engine rankings. CSS can be applied through inline styles, embedded style sheets, or external style sheets linked via HTML. Resources for learning more about CSS include various websites documenting its capabilities and best practices.
CSS (Cascading Style Sheets) allows control over how HTML elements are displayed on different media. CSS saves work by allowing global control of layout and styles across multiple web pages from a single stylesheet. It provides advantages like faster page loads, easy maintenance through global changes, superior styling capabilities, and compatibility across devices. CSS is created and maintained by the W3C consortium and browser vendors implement CSS specifications. Styles are applied using selectors that target elements by name, id, class, and other attributes. Styles can be defined internally, in external style sheets, or inline in elements.
CSS (Cascading Style Sheets) allows separation of design and content of web pages. It was created in 1994 and has become the W3C standard for controlling visual presentation. CSS separates design elements like colors and fonts from the structural HTML markup. This separation allows designers to change the look without altering the content. CSS offers advantages like faster downloads, streamlined maintenance, global design control, and cost savings through reduced bandwidth and higher search engine rankings. Resources for learning more about CSS include w3.org, csszengarden.com, and webmonkey.wired.com.
This document discusses DHTML and CSS. It defines DHTML as a combination of HTML, CSS, and scripting that allows dynamic web pages. It describes the four main components of DHTML - HTML, CSS, scripting languages like JavaScript, and the DOM. It provides details on each component, including how CSS controls formatting, how scripting adds interactivity, and how the DOM defines elements for script access. It also gives examples of using internal, inline, and external CSS stylesheets.
CSS (Cascading Style Sheets) is a style sheet language that allows control over the presentation and layout of web pages. CSS handles the look and feel aspects of a web page by controlling things like colors, fonts, layout, and variations for different devices. CSS provides advantages like time savings through reuse of styles, faster page loads with less code, and easy maintenance through global style changes. The CSS language is created and maintained by the CSS Working Group within the W3C, and the ratified specifications become recommendations for implementation.
1) The document provides resources for a front-end development session including working files, slides, and an agenda.
2) It reviews HTML tags, CSS selectors, the box model, positioning, and Flexbox.
3) Instructions are given to install Atom plugins and review JavaScript and JQuery before adding an Express server to a webpage.
Vskills certified CSS designer Notes covers the following concepts.
1 CSS Basics
1.1 Introduction
1.2 Why to use CSS
1.3 CSS Editors
1.4 A CSS Example
1.5 Custom CSS
1.6 Cross Browser Testing
1.7 Including CSS
1.8 Validating CSS
Get complete e-book on CSS.
http://www.vskills.in/certification/Web-Development/certified-css-designer
The document covers various topics related to CSS including CSS introduction, syntax, selectors, inclusion methods, setting backgrounds, fonts, manipulating text, and working with images. Key points include how CSS handles web page styling, the advantages of CSS, CSS versions, associating styles using embedded, inline, external and imported CSS, and properties for backgrounds, fonts, text formatting, and images.
Using Templates And Cascading Style Sheets10Sutinder Mann
Templates and cascading style sheets (CSS) are both methods for establishing consistent styles across multiple web pages in Dreamweaver. Templates allow for content to be edited within designated regions while keeping other regions like banners fixed, and changes made to the template are automatically reflected on all linked pages. CSS separates style rules from HTML content by defining styles in an external .css file linked to pages via <link> tags. This results in cleaner HTML and faster loading times compared to templates. Both achieve consistent styles but templates are easier to set up while CSS produces simpler code.
CSS is used to control the style and formatting of web documents. It allows for creating stunning web sites by controlling colors, fonts, layouts, and other design elements. CSS is also important for web designers and developers because it provides powerful but easy to learn controls over HTML formatting and applies styles consistently across pages. The basic structure of a CSS stylesheet uses selectors to target HTML elements and declarations to specify property values that control the appearance of those elements.
This document provides an overview of styles, themes, and master pages in chapter 8. It discusses styles and CSS, including inline, internal, and external CSS. It defines selectors and declarations. It also covers themes in ASP.NET which provide a centralized way to define a website's appearance. Master pages are mentioned as a way to simplify the use of themes across content pages. Examples are provided of CSS code and using classes to change styles on click events in ASP.NET codebehind files.
Frank van Geffen is a Business Analyst at the Rabobank in the Netherlands. The first time Frank encountered Process Mining was in 2002, when he graduated on a method called communication diagnosis. He stumbled upon the topic again in 2008 and was amazed by the possibilities.
Frank shares his experiences after applying process mining in various projects at the bank. He thinks that process mining is most interesting for the Process manager / Process owner (accountable for all aspects of the complete end to end process), the Process Analyst (responsible for performing the process mining analysis), the Process Auditor (responsible for auditing processes), and the IT department (responsible for development/aquisition, delivery and maintanance of the process mining software).
GenAI for Quant Analytics: survey-analytics.aiInspirient
Pitched at the Greenbook Insight Innovation Competition as apart of IIEX North America 2025 on 30 April 2025 in Washington, D.C.
Join us at survey-analytics.ai!
Mieke Jans is a Manager at Deloitte Analytics Belgium. She learned about process mining from her PhD supervisor while she was collaborating with a large SAP-using company for her dissertation.
Mieke extended her research topic to investigate the data availability of process mining data in SAP and the new analysis possibilities that emerge from it. It took her 8-9 months to find the right data and prepare it for her process mining analysis. She needed insights from both process owners and IT experts. For example, one person knew exactly how the procurement process took place at the front end of SAP, and another person helped her with the structure of the SAP-tables. She then combined the knowledge of these different persons.
Frank van Geffen is a Process Innovator at the Rabobank. He realized that it took a lot of different disciplines and skills working together to achieve what they have achieved. It's not only about knowing what process mining is and how to operate the process mining tool. Instead, a lot of emphasis needs to be placed on the management of stakeholders and on presenting insights in a meaningful way for them.
The results speak for themselves: In their IT service desk improvement project, they could already save 50,000 steps by reducing rework and preventing incidents from being raised. In another project, business expense claim turnaround time has been reduced from 11 days to 1.2 days. They could also analyze their cross-channel mortgage customer journey process.
2025年新版意大利毕业证布鲁诺马代尔纳嘉雷迪米音乐学院文凭【q微1954292140】办理布鲁诺马代尔纳嘉雷迪米音乐学院毕业证(Rimini毕业证书)2025年新版毕业证书【q微1954292140】布鲁诺马代尔纳嘉雷迪米音乐学院offer/学位证、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作【q微1954292140】Buy Conservatorio di Musica "B.Maderna G.Lettimi" Diploma购买美国毕业证,购买英国毕业证,购买澳洲毕业证,购买加拿大毕业证,以及德国毕业证,购买法国毕业证(q微1954292140)购买荷兰毕业证、购买瑞士毕业证、购买日本毕业证、购买韩国毕业证、购买新西兰毕业证、购买新加坡毕业证、购买西班牙毕业证、购买马来西亚毕业证等。包括了本科毕业证,硕士毕业证。
主营项目:
1、真实教育部国外学历学位认证《意大利毕业文凭证书快速办理布鲁诺马代尔纳嘉雷迪米音乐学院毕业证定购》【q微1954292140】《论文没过布鲁诺马代尔纳嘉雷迪米音乐学院正式成绩单》,教育部存档,教育部留服网站100%可查.
2、办理Rimini毕业证,改成绩单《Rimini毕业证明办理布鲁诺马代尔纳嘉雷迪米音乐学院办理文凭》【Q/WeChat:1954292140】Buy Conservatorio di Musica "B.Maderna G.Lettimi" Certificates《正式成绩单论文没过》,布鲁诺马代尔纳嘉雷迪米音乐学院Offer、在读证明、学生卡、信封、证明信等全套材料,从防伪到印刷,从水印到钢印烫金,高精仿度跟学校原版100%相同.
3、真实使馆认证(即留学人员回国证明),使馆存档可通过大使馆查询确认.
4、留信网认证,国家专业人才认证中心颁发入库证书,留信网存档可查.
《布鲁诺马代尔纳嘉雷迪米音乐学院留服认证意大利毕业证书办理Rimini文凭不见了怎么办》【q微1954292140】学位证1:1完美还原海外各大学毕业材料上的工艺:水印,阴影底纹,钢印LOGO烫金烫银,LOGO烫金烫银复合重叠。文字图案浮雕、激光镭射、紫外荧光、温感、复印防伪等防伪工艺。
高仿真还原意大利文凭证书和外壳,定制意大利布鲁诺马代尔纳嘉雷迪米音乐学院成绩单和信封。毕业证定制Rimini毕业证【q微1954292140】办理意大利布鲁诺马代尔纳嘉雷迪米音乐学院毕业证(Rimini毕业证书)【q微1954292140】学位证书制作代办流程布鲁诺马代尔纳嘉雷迪米音乐学院offer/学位证成绩单激光标、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决布鲁诺马代尔纳嘉雷迪米音乐学院学历学位认证难题。
意大利文凭布鲁诺马代尔纳嘉雷迪米音乐学院成绩单,Rimini毕业证【q微1954292140】办理意大利布鲁诺马代尔纳嘉雷迪米音乐学院毕业证(Rimini毕业证书)【q微1954292140】安全可靠的布鲁诺马代尔纳嘉雷迪米音乐学院offer/学位证办理原版成绩单、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决布鲁诺马代尔纳嘉雷迪米音乐学院学历学位认证难题。
意大利文凭购买,意大利文凭定制,意大利文凭补办。专业在线定制意大利大学文凭,定做意大利本科文凭,【q微1954292140】复制意大利Conservatorio di Musica "B.Maderna G.Lettimi" completion letter。在线快速补办意大利本科毕业证、硕士文凭证书,购买意大利学位证、布鲁诺马代尔纳嘉雷迪米音乐学院Offer,意大利大学文凭在线购买。
如果您在英、加、美、澳、欧洲等留学过程中或回国后:
1、在校期间因各种原因未能顺利毕业《Rimini成绩单工艺详解》【Q/WeChat:1954292140】《Buy Conservatorio di Musica "B.Maderna G.Lettimi" Transcript快速办理布鲁诺马代尔纳嘉雷迪米音乐学院教育部学历认证书毕业文凭证书》,拿不到官方毕业证;
2、面对父母的压力,希望尽快拿到;
3、不清楚认证流程以及材料该如何准备;
4、回国时间很长,忘记办理;
5、回国马上就要找工作《正式成绩单布鲁诺马代尔纳嘉雷迪米音乐学院文凭详解细节》【q微1954292140】《研究生文凭Rimini毕业证详解细节》办给用人单位看;
6、企事业单位必须要求办理的;
7、需要报考公务员、购买免税车、落转户口、申请留学生创业基金。
【q微1954292140】帮您解决在意大利布鲁诺马代尔纳嘉雷迪米音乐学院未毕业难题(Conservatorio di Musica "B.Maderna G.Lettimi" )文凭购买、毕业证购买、大学文凭购买、大学毕业证购买、买文凭、日韩文凭、英国大学文凭、美国大学文凭、澳洲大学文凭、加拿大大学文凭(q微1954292140)新加坡大学文凭、新西兰大学文凭、爱尔兰文凭、西班牙文凭、德国文凭、教育部认证,买毕业证,毕业证购买,买大学文凭,购买日韩毕业证、英国大学毕业证、美国大学毕业证、澳洲大学毕业证、加拿大大学毕业证(q微1954292140)新加坡大学毕业证、新西兰大学毕业证、爱尔兰毕业证、西班牙毕业证、德国毕业证,回国证明,留信网认证,留信认证办理,学历认证。从而完成就业。布鲁诺马代尔纳嘉雷迪米音乐学院毕业证办理,布鲁诺马代尔纳嘉雷迪米音乐学院文凭办理,布鲁诺马代尔纳嘉雷迪米音乐学院成绩单办理和真实留信认证、留服认证、布鲁诺马代尔纳嘉雷迪米音乐学院学历认证。学院文凭定制,布鲁诺马代尔纳嘉雷迪米音乐学院原版文凭补办,扫描件文凭定做,100%文凭复刻。
特殊原因导致无法毕业,也可以联系我们帮您办理相关材料:
1:在布鲁诺马代尔纳嘉雷迪米音乐学院挂科了,不想读了,成绩不理想怎么办???
2:打算回国了,找工作的时候,需要提供认证《Rimini成绩单购买办理布鲁诺马代尔纳嘉雷迪米音乐学院毕业证书范本》【Q/WeChat:1954292140】Buy Conservatorio di Musica "B.Maderna G.Lettimi" Diploma《正式成绩单论文没过》有文凭却得不到认证。又该怎么办???意大利毕业证购买,意大利文凭购买,
3:回国了找工作没有布鲁诺马代尔纳嘉雷迪米音乐学院文凭怎么办?有本科却要求硕士又怎么办?
保密服务多伦多都会大学英文毕业证书影本加拿大成绩单多伦多都会大学文凭【q微1954292140】办理多伦多都会大学学位证(TMU毕业证书)成绩单VOID底纹防伪【q微1954292140】帮您解决在加拿大多伦多都会大学未毕业难题(Toronto Metropolitan University)文凭购买、毕业证购买、大学文凭购买、大学毕业证购买、买文凭、日韩文凭、英国大学文凭、美国大学文凭、澳洲大学文凭、加拿大大学文凭(q微1954292140)新加坡大学文凭、新西兰大学文凭、爱尔兰文凭、西班牙文凭、德国文凭、教育部认证,买毕业证,毕业证购买,买大学文凭,购买日韩毕业证、英国大学毕业证、美国大学毕业证、澳洲大学毕业证、加拿大大学毕业证(q微1954292140)新加坡大学毕业证、新西兰大学毕业证、爱尔兰毕业证、西班牙毕业证、德国毕业证,回国证明,留信网认证,留信认证办理,学历认证。从而完成就业。多伦多都会大学毕业证办理,多伦多都会大学文凭办理,多伦多都会大学成绩单办理和真实留信认证、留服认证、多伦多都会大学学历认证。学院文凭定制,多伦多都会大学原版文凭补办,扫描件文凭定做,100%文凭复刻。
特殊原因导致无法毕业,也可以联系我们帮您办理相关材料:
1:在多伦多都会大学挂科了,不想读了,成绩不理想怎么办???
2:打算回国了,找工作的时候,需要提供认证《TMU成绩单购买办理多伦多都会大学毕业证书范本》【Q/WeChat:1954292140】Buy Toronto Metropolitan University Diploma《正式成绩单论文没过》有文凭却得不到认证。又该怎么办???加拿大毕业证购买,加拿大文凭购买,【q微1954292140】加拿大文凭购买,加拿大文凭定制,加拿大文凭补办。专业在线定制加拿大大学文凭,定做加拿大本科文凭,【q微1954292140】复制加拿大Toronto Metropolitan University completion letter。在线快速补办加拿大本科毕业证、硕士文凭证书,购买加拿大学位证、多伦多都会大学Offer,加拿大大学文凭在线购买。
加拿大文凭多伦多都会大学成绩单,TMU毕业证【q微1954292140】办理加拿大多伦多都会大学毕业证(TMU毕业证书)【q微1954292140】学位证书电子图在线定制服务多伦多都会大学offer/学位证offer办理、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决多伦多都会大学学历学位认证难题。
主营项目:
1、真实教育部国外学历学位认证《加拿大毕业文凭证书快速办理多伦多都会大学毕业证书不见了怎么办》【q微1954292140】《论文没过多伦多都会大学正式成绩单》,教育部存档,教育部留服网站100%可查.
2、办理TMU毕业证,改成绩单《TMU毕业证明办理多伦多都会大学学历认证定制》【Q/WeChat:1954292140】Buy Toronto Metropolitan University Certificates《正式成绩单论文没过》,多伦多都会大学Offer、在读证明、学生卡、信封、证明信等全套材料,从防伪到印刷,从水印到钢印烫金,高精仿度跟学校原版100%相同.
3、真实使馆认证(即留学人员回国证明),使馆存档可通过大使馆查询确认.
4、留信网认证,国家专业人才认证中心颁发入库证书,留信网存档可查.
《多伦多都会大学学位证购买加拿大毕业证书办理TMU假学历认证》【q微1954292140】学位证1:1完美还原海外各大学毕业材料上的工艺:水印,阴影底纹,钢印LOGO烫金烫银,LOGO烫金烫银复合重叠。文字图案浮雕、激光镭射、紫外荧光、温感、复印防伪等防伪工艺。
高仿真还原加拿大文凭证书和外壳,定制加拿大多伦多都会大学成绩单和信封。学历认证证书电子版TMU毕业证【q微1954292140】办理加拿大多伦多都会大学毕业证(TMU毕业证书)【q微1954292140】毕业证书样本多伦多都会大学offer/学位证学历本科证书、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决多伦多都会大学学历学位认证难题。
多伦多都会大学offer/学位证、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作【q微1954292140】Buy Toronto Metropolitan University Diploma购买美国毕业证,购买英国毕业证,购买澳洲毕业证,购买加拿大毕业证,以及德国毕业证,购买法国毕业证(q微1954292140)购买荷兰毕业证、购买瑞士毕业证、购买日本毕业证、购买韩国毕业证、购买新西兰毕业证、购买新加坡毕业证、购买西班牙毕业证、购买马来西亚毕业证等。包括了本科毕业证,硕士毕业证。
Decision Trees in Artificial-Intelligence.pdfSaikat Basu
Have you heard of something called 'Decision Tree'? It's a simple concept which you can use in life to make decisions. Believe you me, AI also uses it.
Let's find out how it works in this short presentation. #AI #Decisionmaking #Decisions #Artificialintelligence #Data #Analysis
https://saikatbasu.me
Zig Websoftware creates process management software for housing associations. Their workflow solution is used by the housing associations to, for instance, manage the process of finding and on-boarding a new tenant once the old tenant has moved out of an apartment.
Paul Kooij shows how they could help their customer WoonFriesland to improve the housing allocation process by analyzing the data from Zig's platform. Every day that a rental property is vacant costs the housing association money.
But why does it take so long to find new tenants? For WoonFriesland this was a black box. Paul explains how he used process mining to uncover hidden opportunities to reduce the vacancy time by 4,000 days within just the first six months.
Just-in-time: Repetitive production system in which processing and movement of materials and goods occur just as they are needed, usually in small batches
JIT is characteristic of lean production systems
JIT operates with very little “fat”
Bram Vanschoenwinkel is a Business Architect at AE. Bram first heard about process mining in 2008 or 2009, when he was searching for new techniques with a quantitative approach to process analysis. By now he has completed several projects in payroll accounting, public administration, and postal services.
The discovered AS IS process models are based on facts rather than opinions and, therefore, serve as the ideal starting point for change. Bram uses process mining not as a standalone technique but complementary and in combination with other techniques to focus on what is really important: Actually improving the process.
快速办理新西兰成绩单奥克兰理工大学毕业证【q微1954292140】办理奥克兰理工大学毕业证(AUT毕业证书)diploma学位认证【q微1954292140】新西兰文凭购买,新西兰文凭定制,新西兰文凭补办。专业在线定制新西兰大学文凭,定做新西兰本科文凭,【q微1954292140】复制新西兰Auckland University of Technology completion letter。在线快速补办新西兰本科毕业证、硕士文凭证书,购买新西兰学位证、奥克兰理工大学Offer,新西兰大学文凭在线购买。
主营项目:
1、真实教育部国外学历学位认证《新西兰毕业文凭证书快速办理奥克兰理工大学毕业证的方法是什么?》【q微1954292140】《论文没过奥克兰理工大学正式成绩单》,教育部存档,教育部留服网站100%可查.
2、办理AUT毕业证,改成绩单《AUT毕业证明办理奥克兰理工大学展示成绩单模板》【Q/WeChat:1954292140】Buy Auckland University of Technology Certificates《正式成绩单论文没过》,奥克兰理工大学Offer、在读证明、学生卡、信封、证明信等全套材料,从防伪到印刷,从水印到钢印烫金,高精仿度跟学校原版100%相同.
3、真实使馆认证(即留学人员回国证明),使馆存档可通过大使馆查询确认.
4、留信网认证,国家专业人才认证中心颁发入库证书,留信网存档可查.
《奥克兰理工大学毕业证定制新西兰毕业证书办理AUT在线制作本科文凭》【q微1954292140】学位证1:1完美还原海外各大学毕业材料上的工艺:水印,阴影底纹,钢印LOGO烫金烫银,LOGO烫金烫银复合重叠。文字图案浮雕、激光镭射、紫外荧光、温感、复印防伪等防伪工艺。
高仿真还原新西兰文凭证书和外壳,定制新西兰奥克兰理工大学成绩单和信封。专业定制国外毕业证书AUT毕业证【q微1954292140】办理新西兰奥克兰理工大学毕业证(AUT毕业证书)【q微1954292140】学历认证复核奥克兰理工大学offer/学位证成绩单定制、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决奥克兰理工大学学历学位认证难题。
新西兰文凭奥克兰理工大学成绩单,AUT毕业证【q微1954292140】办理新西兰奥克兰理工大学毕业证(AUT毕业证书)【q微1954292140】学位认证要多久奥克兰理工大学offer/学位证在线制作硕士成绩单、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作。帮你解决奥克兰理工大学学历学位认证难题。
奥克兰理工大学offer/学位证、留信官方学历认证(永久存档真实可查)采用学校原版纸张、特殊工艺完全按照原版一比一制作【q微1954292140】Buy Auckland University of Technology Diploma购买美国毕业证,购买英国毕业证,购买澳洲毕业证,购买加拿大毕业证,以及德国毕业证,购买法国毕业证(q微1954292140)购买荷兰毕业证、购买瑞士毕业证、购买日本毕业证、购买韩国毕业证、购买新西兰毕业证、购买新加坡毕业证、购买西班牙毕业证、购买马来西亚毕业证等。包括了本科毕业证,硕士毕业证。
特殊原因导致无法毕业,也可以联系我们帮您办理相关材料:
1:在奥克兰理工大学挂科了,不想读了,成绩不理想怎么办???
2:打算回国了,找工作的时候,需要提供认证《AUT成绩单购买办理奥克兰理工大学毕业证书范本》【Q/WeChat:1954292140】Buy Auckland University of Technology Diploma《正式成绩单论文没过》有文凭却得不到认证。又该怎么办???新西兰毕业证购买,新西兰文凭购买,
【q微1954292140】帮您解决在新西兰奥克兰理工大学未毕业难题(Auckland University of Technology)文凭购买、毕业证购买、大学文凭购买、大学毕业证购买、买文凭、日韩文凭、英国大学文凭、美国大学文凭、澳洲大学文凭、加拿大大学文凭(q微1954292140)新加坡大学文凭、新西兰大学文凭、爱尔兰文凭、西班牙文凭、德国文凭、教育部认证,买毕业证,毕业证购买,买大学文凭,购买日韩毕业证、英国大学毕业证、美国大学毕业证、澳洲大学毕业证、加拿大大学毕业证(q微1954292140)新加坡大学毕业证、新西兰大学毕业证、爱尔兰毕业证、西班牙毕业证、德国毕业证,回国证明,留信网认证,留信认证办理,学历认证。从而完成就业。奥克兰理工大学毕业证办理,奥克兰理工大学文凭办理,奥克兰理工大学成绩单办理和真实留信认证、留服认证、奥克兰理工大学学历认证。学院文凭定制,奥克兰理工大学原版文凭补办,扫描件文凭定做,100%文凭复刻。
css-presentation css file with your content add-ins for PowerPoint lets you coordinate the appearance of your add-in with the theme applied to the presentation it's running with
1. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
Using Cascading Style Sheets
Mark Branom
IT Services Technology Training
650.725.1717
markb@stanford.edu
http://www.stanford.edu/people/markb/
This handout accompanies classroom instruction provided by the IT Services Technology Training group at Stanford University.
While it is not intended as a stand-alone tutorial, it may be helpful for review of materials taught in the course.
2. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 1
What are Cascading Style Sheets?
Cascading Style Sheets (CSS) were established by the World Wide Web
Consortium (W3C). The CSS specification allows for more control over
the look, or style, of web pages or other XML files by providing a
central location, or sheet, where you can define how certain HTML
(Hyper-Text Markup Language) or XML (eXtensible Markup
Language) tags are going to be interpreted by the browser.
Why is it called “cascading”? In CSS, multiple styles can be applied to
a particular document (usually a web page or XML file). The browser
will interpret these styles in a cascading fashion:
• Style rules set up site-wide are overridden by styles located within individual pages.
• Individual pages are overridden by styles inside an individual tag.
• In addition, the end user can set up styles in the browser that will override the author’s
styles.
• All matching rules for a particular selector will be applied, except where they conflict
with each other (in which case, the latter rule would be applied, as determined by the
cascade). In the following example, <h2> tags would be displayed in red and italics
(but not blue):
h2 {font-style: italic;}
h2 {color: darkblue;}
h2 {color: red;}
3. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 2
What are Cascading Style Sheets? continued
To properly see the effects of the Style Sheets, your visitors will need to use a
web browser that is version 4.0 or newer. Fortunately, using CSS does not cause
web pages to break when viewed on older browsers; however, the styles won’t
appear as defined. Since most people these days are using Internet Explorer 6,
Netscape 7, or Firefox 1 or newer, most browsers can properly display CSS.
CSS-aware browsers apply their own stylesheet for every HTML element as the
first set of rules in the cascade, and this set of rules form the default display for
every element. For example, most browsers treat the <p> tag as a block
element, as though there were the explicit declaration p { display: block;}
By using CSS, you modify the default settings by overriding these implicit styles
with an explicit declaration (for more on the block display, see slide 17).
By using CSS, you can also control text formatting and location on the page.
Using CSS can eliminate the need for tables as a layout tool. With CSS, logos
can be created using just text, instead of having to rely on graphics. These
changes make pages more accessible to a wider audience.
CSS Specifications:
• CSS 1: http://www.w3.org/TR/REC-CSS1-961217.html
• CSS 2: http://www.w3.org/TR/CSS2/
• CSS 2.1: http://www.w3.org/TR/CSS21/
Differences between CSS 1, CSS 2, and CSS 2.1:
• Between CSS 1 and CSS 2: http://www.w3.org/TR/CSS2/changes.html
• Between CSS 2 and CSS 2.1: http://www.w3.org/TR/CSS21/changes.html
4. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 3
Pros and Cons of Using CSS
Pros
• Greater designer control of the appearance of the page
• Easier management of site-wide changes
• Greater accessibility to web sites by non-graphical browsers and
web-page-reading software
Cons
• Different browsers may interpret Style Sheets in different ways
• Some styles may not be seen at all on some browsers
5. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 4
CSS Examples
The CSS Zen Garden shows some of the most advanced uses of CSS:
http://www.csszengarden.com/
CSS in the real world: ajc.com's 'News Break'
http://www.holovaty.com/blog/archive/2002/09/28/2340
Web Standards Tech Briefing – with CSS:
http://techbriefings.stanford.edu/web_standards/example1.html
Web Standards Tech Briefing – without CSS :
http://techbriefings.stanford.edu/web_standards/example2.html
6. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 5
CSS Basics
Under standard HTML, to create a web site with
<h2> tags that have the standard features of a Header
tag (that is, their own paragraph, bold, with a size
change) and also are dark blue, you have to code each
one as follows:
<h2><font color="darkblue">This is a darkblue H2 tag</font></h2>
That’s a lot of information to type every time you
want to use a dark blue <h2> tag. Using CSS, all you
need to do is type a regular <h2> tag. The style
information will be included in the Style Sheet as
follows:
h2 { color: darkblue;}
7. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 6
CSS Rules
To change the color of ALL <h2> tags from darkblue to green,
simply change the called for color to “green.” The next time
anyone sees the site, all the <h2> tags on all the pages will be
green instead of darkblue.
These styles are called rules. Each rule consists of a selector and
a declaration (which is made up of a property and a value).
In the example below, h2 is the selector, color is the property,
and darkblue is the value. When used with web pages, selectors
are usually HTML tags.
h2 { color: darkblue;}
Syntax for a CSS rule:
selector { property: value; }
8. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 7
Grouping Styles and Selectors
Each rule can include multiple styles by simply separating them by semicolons:
h2 { color: darkblue; font-style: italic;}
Additionally, multiple selectors that have the same styles can be grouped by separating them with commas:
h1, h2, h3 { color: darkblue; font-style: italic;}
Contextual selectors allow you to specify that something will change, but only when it is used in conjunction
with something else. With the following style, strong will be displayed in red, but only when it occurs
within li within ul.
ul li strong { color: red;}
Elements being modified by contextual selectors need not appear immediately inside one another (using
this style, blah would still be red text: <ul><ol><li><strong> blah </strong></li></ol></ul>).
Direct child selectors allow you to specify that something will change, but only those that are immediately
inside of another element. With the following style, only those strong elements that are directly inside of
an h1 will be purple; no strong tags deeper within the sheet will be purple.
h1 > strong { color: purple;}
Adjacent selectors allow you to specify that something will change, but only when preceded by something
else. With the following style, only those links (a) that are preceded by an h2 will be green.
h2 + a { color: green;}
Elements being modified by adjacent selectors appear immediately after one another. Using this style, this
link would be green: <h2>Visit Stanford!</h2><a href="http://www.stanford.edu">click here</a>.
This link would not: <h2>Visit Stanford! <a href="http://www.stanford.edu">click here</a></h2>.
You can also group selectors by attribute. With the following style, centered h2 tags (<h2 align="center">)
will be surrounded by a dotted border:
h2[align="center"] { border: dotted;}
9. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 8
Where do you put the styles?
Style information can be located in three places:
• External to the pages in a site
• Internal to each page
• Inline with individual tags
Generally, creating an external style sheet file is the
preferred method. To take full advantage of CSS, the
Style Sheet for a site should be in this one external
file, so that any changes will apply throughout the
site. This also means that only one style document
has to be downloaded for a single site.
10. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 9
Style Location: External
The most common place to put style information is in an external
document that each page of a web site points to directly.
Any changes made to this single document will then be applied
throughout the entire web site as each page is accessed by users.
External Style Sheets have a .css extension.
When linking to an external style sheet, you can also specify separate
style sheets by media type:
• all - Suitable for all devices.
• aural - Intended for speech synthesizers.
• braille - Intended for braille tactile feedback devices.
• embossed - Intended for paged braille printers.
• handheld - Intended for handheld devices (typically small screen, monochrome,
limited bandwidth).
• print - Intended for paged, opaque material and for documents viewed on screen in
print preview mode.
• projection - Intended for projected presentations
• screen - Intended primarily for color computer screens.
• tty - Intended for media using a fixed-pitch character grid, such as teletypes, terminals,
or portable devices with limited display capabilities.
• tv - Intended for television-type devices
11. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 10
External example
Text that appears in the basic.css style sheet document:
h2 {font-family: Arial, sans-serif; font-style: italic; color: green;}
p {font-family: Courier, monotype; font-style: bold; color: red; }
Text that appears in the print.css style sheet document:
h2 {font-family: Book Antiqua, Times, serif; font-style: italic; }
p {font-family: Courier, monotype; font-style: bold; }
HTML document, using the <link> tag method
<head>
<link rel="stylesheet" type="text/css"
href="basic.css" media="all" />
<link rel="stylesheet" type="text/css"
href="print.css" media="print" />
</head>
HTML document, using the @import and @media method
<head>
<style type="text/css">
<!--
@import url("basic.css") all;
@media url("print.css") print;
-->
</style>
</head>
12. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 11
Style Location: Internal
Style information can also be included in the <head>
section of an individual web page. This tends to work
best when a single page needs to have a slightly
different look than the rest of the site.
13. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 12
Style Location: Inline
For extreme control, style information can be
included in an individual tag. The style effects only
that tag and no others in the document. This option
is most useful for those rare occasions when a single
tag needs to have a slightly different style.
14. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 13
Hierarchy of styles
When style information is located in all three places in one site,
the hierarchy is as follows:
• External Style Sheets affect the entire site.
• Internal styles affect only their own pages and override external styles.
• Inline styles affect only their own tags and override both internal and
external styles.
For example, if an external Style Sheet sets <h2> tags to purple
and a particular page has an internal style that changes that
color to orange, the <h2> tags will be orange only on that page
and nowhere else in the site. If there is a single <h2> tag on that
page which specifies green as its color, then the color for that
one tag will be green. All other <h2> tags on that page would
be orange; the <h2> tags on the rest of the site would be purple.
15. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 14
!important
Normally, the last rule listed in the cascade will take precedence
over previous rules. In this example, the body font will be
Verdana, not Times.
body {font-family: Times;
font-family: Verdana;}
However, by entering !important in a rule, that rule will take
precedence, regardless of its location. In this example, the body
font will be Times, not Verdana.
body {font-family: Times !important;
font-family: Verdana;}
Note: !important does not work with all properties in Internet Explorer.
16. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 15
Classes and IDs
HTML has two attributes that make CSS even more useful: class and ID. They
make it easy to apply style to just about any tag.
Classes can describe a generic style that can be applied to any HTML element, or
can be created for specific elements.
When defining a style for elements with a particular class attribute in the Style
Sheet, declare a rule using a dot (.) followed by the class name. To limit the style
to a particular element with that class attribute, use a selector combining the tag
name with a dot followed immediately by the class name.
• The following rule would apply to any element with the attribute class=“shade"
.shade { background: yellow; }
• The following rule would apply only to paragraph tags with the class shade (<p class="shade">)
p.shade { background: red; }
IDs are similar to classes, but IDs are unique – they can only be used with one
instance of an element within a document.
When defining a CSS rule using an ID-based selector, use a
number/pound/hash sign (#) followed by the style name. To limit the style to a
particular element with that id attribute, use a selector combining the tag name
with a # and then the id name.
• The following rule would apply to any element with the attribute id="intro"
#intro { font-size: 2em; }
• The following rule would apply only to heading 1 tags with the id intro (<h1 id="intro">)
h1#intro { color: green; }
17. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 16
Class example
Here’s an example of a web page with an internal CSS
style with a class called “highlight”:
18. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 17
Inline vs. Block Display (HTML)
All HTML elements (tags) are assigned a display
property value of either inline or block.
Inline elements display in browsers horizontally.
[INLINE ELEMENT 1] [INLINE ELEMENT 2] [INLINE ELEMENT 3]
Block elements display in browsers vertically (stacked
one on top of the other).
[BLOCK ELEMENT 1]
[BLOCK ELEMENT 2]
[BLOCK ELEMENT 3]
Examples of inline elements:
<a> <img> <strong> <em> <span>
Examples of block elements:
<p> <h1-h6> <div> <hr> <table> <ul> <ol>
19. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 18
Inline vs. Block Display (CSS)
Using CSS, you can change this inherent display
property:
• To force a block display, use the declaration display: block;
• To force an inline display, use the declaration display: inline;
• To force a list, use the declaration display: list-item;
• To hide elements matching the selector, use the declaration
display: none;
20. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 19
Example – display: block;
Normally, <a> tags display inline.
But, if you add the style a {display: block;},
they will display as a vertical navigation menu:
21. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 20
Example – display: inline;
Normally, the heading tags display in block format:
But, to have them display inline, add the style
h1,h2,h3 {display: inline;}:
22. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 21
Span and Div
There are two tags that are particularly useful when
using CSS: <span> and <div>. They are both
container tags that have minimal formatting
associated with them.
The <span> tag is an inline element that simply
holds text without doing anything special to it.
The <div> tag is a block element and causes the text
it encloses to start on a new line.
Using <span> and <div> tags in conjunction with
classes and IDs allows for great flexibility in creating
pages.
23. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 22
Example using SPAN, DIV, Class, and ID
Here’s an example of a web page using a class, an id,
and the span and div tags:
24. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 23
Unit Measurements
In CSS, you can measure units either in absolute values or in relative values.
Absolute values are fixed, specific values. Since they are exact measurements, they allow
the designer complete control over the display of the web pages.
mm, cm, in, pt, pc, xx-small, x-small, small, medium, large, x-large, xx-large
Relative values have no fixed, specific values, and are calculated in comparison to
something else (usually the size of the default font or line size). Because different computers
have different video cards, screen sizes, and users have differing eyesight abilities, relative
values tend to be a better choice. They give the designer less absolute control but it often
creates a better experience for the visitor.
em, ex, px, larger, smaller, num%
Examples:
body { font-size: 12px; }
h1, h2, h3 { line-height: 200%;}
Note – a warning about using percentages: if you use percentages, and nest an element
inside of that same element, the percentages will be cumulative.
25. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 24
Font and Text Styling
When choosing a font, there are several things to keep in mind:
1. Not everyone has the same set of fonts.
2. If you use a font that the visitor doesn’t have, the page will display in the
default font (usually Times), unless you provide more choices. To do this,
add more than one font in your declaration, and always end with the font
family (serif, sans-serif, or monospace):
font-family: Verdana, Arial, Helvetica, sans-serif
3. Documents designed to be printed tend to look better in Serif fonts (Times,
Georgia, Book Antiqua, etc.)
4. Documents designed to be viewed onscreen tend to look better in Sans-serif
fonts (Verdana, Arial, Helvetica, etc.)
To apply a font to the entire web page, modify the body tag:
body {font-family: Verdana;}
To apply a font to a specific section of text, create a class, and use
the span tag with that class:
.neatstuff {font-family: Comic Sans MS;}
<span class="neatstuff">This is in Comic Sans</span>
26. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 25
Modifying List Elements
By default, unordered lists (<ul>) appear as bullets and ordered
lists (<ol>) appear as numbers in HTML.
Using CSS, you can modify how list items will appear:
• Properties:
list-style, list-style-type, list-style-image, list-style-position
• Values:
disc, circle, square, decimal, decimal-leading-zero, lower-roman,
upper-roman, lower-alpha, upper-alpha, lower-greek, lower-latin,
upper-latin, hebrew, armenian, georgian, cjk-ideographic, hiragana,
katakana, hiragana-iroha, katakana-iroha, none, url("graphic.gif")
Examples:
ul { list-style: disc; }
ol { list-style: upper-roman;}
li { list-style: url("blackball.gif");}
ul li { list-style-position: inside;}
27. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 26
The Box Model
When the browser draws an object on a page, it places it into an
invisible rectangular space called a “bounding box.”
You can specify the size, look, and feel of the margins, the
padding, the border, and the content of the box.
Internet Explorer interprets CSS box styles differently than
most other web browsers.
In CSS1, the width property is defined as the distance between
the left and right edges of the bounding box that surrounds the
element's content.
Likewise, the height property is defined in CSS as the distance
between the top and bottom edges of the bounding box.
In Internet Explorer, however, the width and height
properties also include the border and padding belts that
surround the element's bounding box.
28. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 27
The Box Model: IE vs. CSS
CSS Standard Internet Explorer
29. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 28
Pseudo-elements and Pseudo-classes
Two special predefined groupings, called pseudo-elements and pseudo-
classes, are used in CSS to deal with special situations that do not exist
with standard HTML. For example, under standard HTML, there is no
way to automatically change the look and feel of the first letter or line of
a paragraph. But by using the pseudo-element :first-letter you
can specify a style that affects it:
p:first-letter { font-size: 200%; color:red;}
Under standard HTML, there is no mechanism to deal with mouse
movements. But with CSS, the pseudo-class :hover can be used to
change the style of a link. In this example, a:hover is used to change
the link color to red and the underlining to disappear whenever a
mouse hovers over links:
a:hover {color: #ff0000; text-decoration: none;)
To change the style of links, use the pseudo-class :link
To change the style of visited links, use the pseudo-class :visited
a:link {color: #00f; font-weight: bold;)
a:visited {color: purple; border: groove;}
30. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 29
Positioning
Using CSS, you can place elements exactly on a page
using a technique called “positioning.” Positioning is
determined by an X axis and Y axis. To specify a
specific point on the screen, you can use the X and Y
coordinate for that point.
There are several ways to specify position in CSS:
absolute, relative, fixed, inherit, and static.
The three most often used are absolute, relative, and
fixed.
Internet Explorer 6 only recognizes absolute and
relative.
31. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 30
Absolute, Relative, Fixed, Inherit, and Static Positioning
Absolute positioning defines the position of a given bounding box from
the top and left side margins of the web page. This not only allows
objects to be placed in an exact location, it also allows objects to be
placed one on top of another.
Relative positioning defines the positioning in such a way that
elements are offset from the previous element in the HTML code. This
allows objects to be placed in relation to one another.
Fixed positioning defines the position of a given box relative to the
window and remains in its specified location even as the content scrolls
underneath it. This value does not work in Internet Explorer 6 or
earlier. In IE 7, the browser must be in “standards-compliance mode”.
Inherit positioning explicitly sets the value to that of the parent (if the
parent is position:absolute, the child will be position:absolute; if the
parent is position:fixed, the child will be position:fixed).
Static positioning is the default. It defines the position of a given box
essentially as an unpositioned element – it flows in the normal
rendering sequence of the web page.
32. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 31
Absolute Positioning Example
33. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 32
Relative Positioning Example
34. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 33
Fixed Positioning – code view
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#links {
position:fixed;
border:dotted;
border-color:#000000;
width:20%;
height:100%;
z-index:1;
left: 0px;
top: 0px;
background-color: #FFFFCC;
}
#main {
position:absolute;
left:25%;
top:0px;
width:70%;
}
-->
</style>
</head>
<body>
<div id="main">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing
elit. Quisque ultrices, nibh ac rhoncus fermentum,
orci sem dapibus nisi, sed tincidunt lectus lectus at
augue. In consectetuer vehicula enim. In hac habitasse
platea dictumst. Donec a nisl vitae tortor tristique
viverra. Sed at lorem a ante lobortis molestie.
Nulla ullamcorper urna accumsan diam. Aliquam non
eros. Pellentesque egestas ultricies enim. Aenean
lobortis. Nulla interdum commodo turpis. Sed ut mi id
elit vehicula sollicitudin. Sed lobortis, ligula sit
amet euismod egestas, mi ante iaculis nunc, ut
rhoncus magna lectus ac arcu. In hac habitasse platea
dictumst. Proin quis ligula vitae quam pharetra
adipiscing. Pellentesque tincidunt suscipit nibh. Ut
fermentum suscipit justo. </p>
<p>Fusce purus lectus, ultricies nec, aliquam at,
facilisis id, arcu. Vestibulum quis mi vel massa
porta hendrerit. Nulla ullamcorper ligula nec lectus.
Quisque tempor, augue in molestie gravida, eros arcu
luctus tortor, eu dignissim diam urna sed urna. Ut
dictum ultrices lacus. In hac habitasse platea
dictumst. Suspendisse sed purus blandit metus
ultricies suscipit. Proin diam justo, consequat id,
rhoncus eget, facilisis ut, lacus. Vivamus dignissim
dui in justo. Suspendisse elit. Nam nulla tortor,
fringilla sed, faucibus quis, ullamcorper a, leo.
Fusce blandit condimentum turpis. Pellentesque vel
odio et odio suscipit egestas. Nullam ullamcorper
sagittis ipsum. Maecenas fringilla malesuada pede.
Duis ut quam. </p>
</div>
<div id="links">
<p>This area is fixed and will never move. It's good for
things like navigation bars.</p>
<ul>
<li><a href="page1.html">Page 1</a></li>
<li><a href="page2.html">Page 2</a></li>
<li><a href="page3.html">Page 3</a></li>
<li><a href="page4.html">Page 4</a></li>
<li><a href="page5.html">Page 5</a></li>
</ul>
</div></body></html>
35. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 34
Fixed Positioning – Firefox web browser
36. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 35
Layers and the “Bounding Box”
When the browser draws an object on a page, it places it into an
invisible rectangular space called a “bounding box.” You can set
the box’s exact location on the page or offset it from other
objects on the page. As mentioned in the previous slides, you
can also specify the size of the box.
With CSS, these boxes can be stacked one on top of another as
layers. Horizontal and vertical positioning happen along the X
and Y axes, and the layered positioning happens along the Z
axis.
The Z axis is set using the CSS style z-index, which allows you
to specify which layer appears on top of the others. By setting
the z-index higher or lower, an object can move up and down
a stack. The higher the z-index, the more “on top” it is.
37. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 36
Layering Example 1
38. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 37
Layering Example 2
39. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 38
Float
If you want to wrap content around other content
(such as text around a picture), you can use the
float property.
The float property determines on which side of the
bounding box the element aligns so that the other
content wraps around it.
40. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 39
Float Example 1 – float: right
41. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 40
Float Example 2 – float: left
42. STANFORD UNIVERSITY • INFORMATION TECHNOLOGY SERVICES
5/10/2024 Using Cascading Style Sheets slide 41
Resources
A List Apart – articles on practical issues and suggestions for working with CSS correctly
http://www.alistapart.com/topics/code/css
Example XHTML Pages, with and without the CSS Style Sheet:
http://techbriefings.stanford.edu/web_standards/example1.html
http://techbriefings.stanford.edu/web_standards/example2.html
http://techbriefings.stanford.edu/web_standards/example.css
The CSS Zen Garden shows some of the most advanced uses of CSS:
http://www.csszengarden.com/
CSS in the real world: ajc.com's 'News Break':
http://www.holovaty.com/blog/archive/2002/09/28/2340
Microsoft's CSS Information:
http://msdn.microsoft.com/workshop/author/css/reference/attributes.asp
Microsoft's Style Sheet Demonstrations:
http://www.microsoft.com/typography/css/gallery/extract1.htm
http://www.microsoft.com/typography/css/gallery/slide1.htm
W3C Style Examples
http://www.w3.org/Style/Examples/007
W3C CSS 2.1 Specifications:
http://www.w3.org/TR/CSS21/
W3Schools CSS Tutorial:
http://www.w3schools.com/css
W3Schools CSS Reference:
http://www.w3schools.com/css/css_reference.asp
Webmonkey’s Cascading Style Sheet Guide:
http://www.webmonkey.com/reference/stylesheet_guide/
Brian Wilson’s Cascading Style Sheet Reference Guide:
http://www.blooberry.com/indexdot/css/index.html