Archive for March 2005
March
29
2005
Written by: hipsterdoofus at 5:15 pm in the Uncategorized and Web Development category.
Note to self: This link, Declared Element Reference helped congeal the whole idea of explicitly referencing controls in Visual Basic programming for me. Thanks to this and this reference, ceTe.DynamicPDF.PageElements.Label, which described the correct tree.
March
16
2005
Written by: hipsterdoofus at 10:19 am in the Web Development category.
Today I learned a bit more about the difference between the newer, international font encoding standard, Unicode versus the older, localized, ANSI standard. I’ll forget what I learned if I don’t make a note, Unicode and multilingual support in HTML, fonts, Web browsers and other applications.
Tags: HTML
March
9
2005
Written by: hipsterdoofus at 4:53 pm in the Web Development category.
…don’t work in IE. See Styling Columns - css-discuss.
Tags: css
March
3
2005
Written by: hipsterdoofus at 3:38 pm in the Web Development category.
A good article with examples of form stylings, aplus moments ? Blog Archive ? Styling form fields
Tags: css, HTML
March
3
2005
Written by: hipsterdoofus at 3:33 pm in the Web Development category.
Thought I’d have a use for this today but I didn’t end up needing it, And all that Malarkey [CSS: A tribute to selectors]. May come in handy later.
Tags: css
March
3
2005
Written by: hipsterdoofus at 1:48 pm in the Web Development category.
A little follow up on the latest float clearing method, mezzoblue | Clearance. The verdict? Good for some situations but not others, especially those where you’re dealing with wide content. A run-down of float clearing methods:
- Make the container a float - which results in some positioning issues
- Adding a clearing element after the floats - adds extra(neous) markup
- Using generated elements (see Position is Everything) to clear the float - Doesn’t work in Internet Explorer
- and this latest, adding
overflow: auto - which can cause scroll bars when the inner float’s width expands beyond its container.
Tags: css
March
2
2005
Written by: hipsterdoofus at 12:20 pm in the Web Development category.
I’ll be damned. It pays off to actually read the weblog feeds I follow. Thanks to this timely link, Simple Clearing of Floats | 456 Berea Street I have a potentially better approach to formatting web forms. It will take some experimenting but by being able to contain floated label elements within a cleared (and semantic) block element (a p for example) then I can better style lines and thus form elements without adding any extraneous markup.
Tags: css