|
Do I have a CSS DTD somewhere on my machine? Like my php.ini that I can edit?
All I want to add is a property called 'corner'. I need it to recognize stuff like this:
#cornerDIV {
background: #000000;
height: 100px;
width: 100px;
corner: r30px;
}
OR
corner: 30%;
and things like
corner-tr
corner-br
corner-tl
corner-bl
That's it. The r is for Radius, which is how round the corner it, how far up the box it starts and ends.
The corner will work by creating pixels in a corner-like shape. The reason for corner: is so you can put rounded corners on background images that change. I was making a site for a friend, and he had a fractal as the BG Image. I was trying to make rounded corners, but I couldn't get them because the background image kept showing through. I was probably doing it wrong anyway, but I still this feature would be cool.
|