I was "cleaning up" some CSS from some sites I worked on before I had any real grasp of CSS, and I came across this little gem of code that I had written.
#big-div {
padding-top: 4px;
padding-right: 6px;
padding-bottom:8px;
padding-left: 6px;
padding-right:4px;
]
#big-div {padding: 6px 7px 5px 8px;}
What was I thinking? Guess the padding on the right side was giving me problems, hence the need to declare it three different times...
Hopefully others have had such... um... "inspired moments of coding" and can post them here, too.