This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Safari5 Dialog Z-Index Bug</title> | |
<style type="text/css"> | |
#overlay { | |
position: absolute; | |
left: 0; | |
top: 0; | |
width: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- CSS3 ROW STYLE CYCLING | |
* alternative pseudo-class notation: | |
:nth-child(2n) == :nth_child(even) | |
:nth-child(2n+1) == :nth_child(odd) | |
--> | |
<style type="text/css"> | |
table.css-cycle tr:nth-child(2n) { | |
background: silver; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Anchor: selective underline CSS</title> | |
<style type="text/css"> | |
.a { | |
text-decoration:none; | |
font-size: 40px; | |
} | |
.w { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PURPOSE | |
------- | |
The following is a walkthrough of Ruby on Rails installation on a VirtualBox'ed Ubuntu and some related tricks. | |
NOTES | |
----- | |
* Most of the commands below require superuser privileges, so with that in mind we proceed. |
NewerOlder