Does anyone know how to go about surrounding an object or image with a circular border in css? On the same topic, is it possible to draw individual lines at different lengths to surround an object, or is this only a javascript thing? Thanks!
'border-radius' is a new option in CSS3. Firefox and Safari already support it. Alternatives are the use of background-images (-flexibility) or pure css (much code). The only possibility to do this in javascript, is to use the new canvas element (part of HTML5, huge functionality (not only rounded corners), but not supported by all browsers yet).