WNAS

Front end developer

Displaying posts tagged:

HTML5 safe usage 3

No Comments

As you may recal, I wrote a small piece on #html5 input types a while go here, in which I stated:If you use an unsupported input type in a browser it falls back to text, what I didn't knew is that reading the type with JavaScript fails also. CSS attribute selectors are fine, only no JavaScript …

chromium bug

2 Comments

I read an interesting tweet just now by Sergey ilinsky, saying that his bug report to Chromium was being ignored. A bug that let's you include css only for chrome WebKit browsers, like apple's safari and google's chrome. Look here for the example page., the text is red in chromium WebKit and black in other browsers. …

Prototyping

2 Comments

.choice{display:none;font-size:3em;}fieldset{border:0;}
Here is a simple help to get you to choose the right method of prototyping a website:

Money mark up

2 Comments

HTMLCSSTest pageQuestion
I recently came across a tweet from a friend of mine Roy with an interesting take on marking up discounted product.
How do you guys feel about using - from <del>€ 27,70</del> for <ins> € 25,00</ins> for discounted products?
As I agree upon his approach, I had an extra option for it. In dutch we differ…

Invalid HTML

3 Comments

IntroductionCode HTML CSSResultsScreenshotsConclusiontest page
I recently encountered something in my work that kinda baffled me. Apparently some (make that lot) people don't know one fundamental thing about inline and block-level elements.The fact is that you are not allowed to nest them.
This seems to be a small matter, but it has all sorts of consequences for …