Rounded Corners
  Everywhere


        Scott Olmsted
 http://www.railsrescue.com
Problem: replace Photoshop
 objects with styled text showing
rounded corners and box shadows
Solution: CSS3


li {
  -moz-border-radius: 5px;
  -moz-box-shadow: 0 1px 3px #999999;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px #999999;
}
Instant Web 2.0:
Text + CSS3 styling
Problem: browsers without
CSS3 border-radius support:
             IE
Solution: CSS3 PIE

http://css3pie.com/
One file and a little styling—


li {
  behavior: url(/stylesheets/PIE.htc);
  border-
  border-radius: 5px;
  box-
  box-shadow: 0 1px 3px #999999;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0 1px 3px #999999;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 1px 3px #999999;
}
—and IE behaves like a
 “modern” browser
Plus an alternate way to call



li {
  behavior: url(/stylesheets/PIE.php
                                 php);
                                 php
  ...

}
Thankyouthankyouverymuch

More Related Content

PDF
Web Design Trends 2010 - What Is CSS3 All About?
PDF
New(ish) Horizons in CSS (PDX Web & Design presentation)
PDF
Pruebas mostrando pdf's
PPTX
CSS3: Common problems and best practices
PDF
KEY
CSS3: Ready for Primetime?
PPTX
KEY
Creating Art with Codes - CSS3
Web Design Trends 2010 - What Is CSS3 All About?
New(ish) Horizons in CSS (PDX Web & Design presentation)
Pruebas mostrando pdf's
CSS3: Common problems and best practices
CSS3: Ready for Primetime?
Creating Art with Codes - CSS3

Similar to Rounded Corners Everywhere (20)

PPTX
Advanced CSS Tricks and Techniques
KEY
Better CSS with Compass/Sass
KEY
Compass/Sass
PDF
CSS3 Tips & Techniques
KEY
Css3
PPT
It's Business Time: Givin' User Experience Love with CSS3
PDF
Add Some Awesome-Sauce
DOC
Css 3 checklist
PPTX
Website trends 2012 presentation
KEY
CSS and CSS3
PPTX
New Elements & Features in CSS3
PDF
Implementing Awesome: An HTML5/CSS3 Workshop
KEY
Trendsetting: Web Design and Beyond
PDF
Look ma! No images!
PDF
Eye Candy Without Images: Fun With CSS3
PDF
CSS3: The Future is Now at DrupalCon San Francisco
PDF
CSS3 Ready for Primetime
PPTX
PPT
PDF
HTML 5 Overview
Advanced CSS Tricks and Techniques
Better CSS with Compass/Sass
Compass/Sass
CSS3 Tips & Techniques
Css3
It's Business Time: Givin' User Experience Love with CSS3
Add Some Awesome-Sauce
Css 3 checklist
Website trends 2012 presentation
CSS and CSS3
New Elements & Features in CSS3
Implementing Awesome: An HTML5/CSS3 Workshop
Trendsetting: Web Design and Beyond
Look ma! No images!
Eye Candy Without Images: Fun With CSS3
CSS3: The Future is Now at DrupalCon San Francisco
CSS3 Ready for Primetime
HTML 5 Overview
Ad

Recently uploaded (20)

PDF
OpenACC and Open Hackathons Monthly Highlights July 2025
PPT
Geologic Time for studying geology for geologist
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
Configure Apache Mutual Authentication
PPT
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
PPT
What is a Computer? Input Devices /output devices
PDF
Consumable AI The What, Why & How for Small Teams.pdf
PDF
Credit Without Borders: AI and Financial Inclusion in Bangladesh
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Flame analysis and combustion estimation using large language and vision assi...
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PPTX
Microsoft Excel 365/2024 Beginner's training
PDF
Getting started with AI Agents and Multi-Agent Systems
DOCX
search engine optimization ppt fir known well about this
PDF
CloudStack 4.21: First Look Webinar slides
PPTX
2018-HIPAA-Renewal-Training for executives
PDF
STKI Israel Market Study 2025 version august
OpenACC and Open Hackathons Monthly Highlights July 2025
Geologic Time for studying geology for geologist
Module 1.ppt Iot fundamentals and Architecture
Zenith AI: Advanced Artificial Intelligence
Configure Apache Mutual Authentication
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
What is a Computer? Input Devices /output devices
Consumable AI The What, Why & How for Small Teams.pdf
Credit Without Borders: AI and Financial Inclusion in Bangladesh
sustainability-14-14877-v2.pddhzftheheeeee
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
NewMind AI Weekly Chronicles – August ’25 Week III
Flame analysis and combustion estimation using large language and vision assi...
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Microsoft Excel 365/2024 Beginner's training
Getting started with AI Agents and Multi-Agent Systems
search engine optimization ppt fir known well about this
CloudStack 4.21: First Look Webinar slides
2018-HIPAA-Renewal-Training for executives
STKI Israel Market Study 2025 version august
Ad

Rounded Corners Everywhere