Strict DTD posable?

They have: 5,633 posts

Joined: Jan 1970

Haveing a look at the tages that arn't avalable in the strict DTD, I have been wondering... Is it possable to make something in the strict DTD? Well other and the w3.org site (I hate that site)

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

Do you mean is it possible? And what tags are you having trouble with? I haven't had a lot of problems with getting pages to validate strict really. It depends what you're doing. The other big thing with strict is all the qualitative things like semantic markup, proper use of mark-up (i.e. no layout tables), accessility and all that.

They have: 5,633 posts

Joined: Jan 1970

I don't need help with anything specific. It just looks to me as the w3 is tring to make the internet compleatly text based. Or at least stop making pages stretch.

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

bja888 wrote: I don't need help with anything specific. It just looks to me as the w3 is tring to make the internet compleatly text based. Or at least stop making pages stretch.

What makes you think that?

JeevesBond's picture

He has: 3,956 posts

Joined: Jun 2002

Quote: Is it possable to make something in the strict DTD?

You mean you want to add tags that aren't available back into the strict DTD? What's the point in trying to do that, if you need to add tags back into the DTD from superceded versions you're entirely missing the point of what the strict DTD is for.

If this is the case you should use an older DTD, or learn to use semantic markup and CSS.

How many times do we have to repeat ourselves? I feel like a parrot! Smiling

Perhaps read this again: http://www.webmaster-forums.net/showthread.php?t=31186

a Padded Cell our articles site!

demonhale's picture

He has: 3,278 posts

Joined: May 2005

Aaaark! jeeves a parrot, jeeves a parrot... Aaaaark!

02bunced's picture

He has: 412 posts

Joined: May 2005

. . . jeeves a parrot, jeeves a parrot

. .

. .

Oh, right. I'll go and do my toenails

JeevesBond's picture

He has: 3,956 posts

Joined: Jun 2002

Squaaawk ... friggin ... squawk ... *sigh*

I'm like the Marvin the Paranoid Android of the parrot world:

Quote: Here I am, brain the size of a small planet and they've got me talking about "web standards"

a Padded Cell our articles site!

They have: 5,633 posts

Joined: Jan 1970

Nothing ever behaves the way I want it to. I usually have to add a bunch of unnecessary stuff to get it to behave a little closer to the ideal layout. I think the days of 80% width are long gone. I want it to go exactly where I need it (example width from left = 100px width from right = 300px)

JeevesBond's picture

He has: 3,956 posts

Joined: Jun 2002

What about:

selector {
   display: block;
   position: relative;
   left: 100px;
   margin-right: 300px;
}
'
Give that a go, that was off the top of my head so have no clue whether it's going to work!

a Padded Cell our articles site!

JeevesBond's picture

He has: 3,956 posts

Joined: Jun 2002

Sorry to double-post, but this would be easier:

selector {
    display: block;
    margin: 0 300px 0 100px;
}
'

They have: 5,633 posts

Joined: Jan 1970

How the?!?! Your the 2nd person to do that to me in the past week! I'm confused! I though margin was the spaceing from the sides of the object.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.