Archive for posts tagged with ‘Extension’

Rounded corners for less (Safari solution)

In addition to the previous article, I’ve got also a solution for the Safari 3.x users/developers out there. Like Mozilla, Apple added some CSS enhancements to their CSS-rendering engine. For getting the same effect as in Firefox, you can use -webkit-border-bottom|top-left|right-radius:

1
<p style="-webkit-border-top-left-radius: 5px; -webkit-border-bottom-right-radius: 5px; background-color: #ebebeb; padding: 10px; color: #000;">Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, sed diam nonumy...</p>

This should result in something like:

Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, sed diam nonumy…

By the way: the W3C offers new options for border in CSS3, of which one is the border-radius stuff.

No Comments

Rounded corners for less?

Okay I’ve to confess that this trick will only work in Firefox, but for those who doesn’t want to start their Gimp/Photoshop-something for getting rounded corners on page elements, this CSS hack might be a proper solution:

1
<p style="-moz-border-radius-topleft: 5px; -moz-border-radius-bottomright: 5px; background-color: #ebebeb; padding: 10px; color: #000;">Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, sed diam nonumy...</p>

By using the CSS extension -moz-border-radius-direction made by Mozilla, this will result in something like:

Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, sed diam nonumy…

No Comments

Speed-Dial for Firefox

Everyone who used one of the recent Opera Browser, knows the advantages of the so-called ‘Speed-Dial’ Feature.

Typing addresses for sites you visit frequently is ineffective. Get your favorite Web page with just one click. Speed Dial is a set of visual bookmarks you see when you open a new tab, like a dashboard for your online life. To add a new page, simply click on an empty Speed Dial and Opera will make suggestions based on browsing history and bookmarks.

Luckily there’s an extension on addons.mozilla.org for getting the same functionality into firefox: FastDial

No Comments