473,382 Members | 1,386 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

"Skinning" html elements

Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/

They list different ways to "skin" an HTML element (ie add rounded corners,
drop shadows, various other graphical effects) using images while still
allowing for viewport and text re-sizing.

Anyone know of any other techniques that I've missed?

Any other comments?

Jun 27 '08 #1
7 1798
Nik Coughlin wrote:
Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/

They list different ways to "skin" an HTML element (ie add rounded corners,
drop shadows, various other graphical effects) using images while still
allowing for viewport and text re-sizing.

Anyone know of any other techniques that I've missed?
I've skinned squirrels. I suppose that's no help. ;)

--
Blinky
Killing all posts from Google Groups
The Usenet Improvement Project: http://improve-usenet.org
NEW --Now evaluating a GG-free news feed: http://usenet4all.se

Jun 27 '08 #2
"Blinky the Shark" <no*****@box.invalidwrote in message
news:pa****************************@thurston.blink ynet.net...
Nik Coughlin wrote:
>Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/

They list different ways to "skin" an HTML element (ie add rounded
corners,
drop shadows, various other graphical effects) using images while still
allowing for viewport and text re-sizing.

Anyone know of any other techniques that I've missed?

I've skinned squirrels. I suppose that's no help. ;)
Depends, would your technique pass the W3 validation suite? Does it work in
most browsers? :P

Jun 27 '08 #3
Nik Coughlin wrote:
"Blinky the Shark" <no*****@box.invalidwrote in message
news:pa****************************@thurston.blink ynet.net...
>Nik Coughlin wrote:
>>Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/

They list different ways to "skin" an HTML element (ie add rounded
corners,
drop shadows, various other graphical effects) using images while still
allowing for viewport and text re-sizing.

Anyone know of any other techniques that I've missed?

I've skinned squirrels. I suppose that's no help. ;)

Depends, would your technique pass the W3 validation suite? Does it work in
most browsers? :P
No, but it can lead directly to dinner. :)
--
Blinky
Killing all posts from Google Groups
The Usenet Improvement Project: http://improve-usenet.org
NEW --Now evaluating a GG-free news feed: http://usenet4all.se

Jun 27 '08 #4
On May 14, 12:05 am, Blinky the Shark <no.s...@box.invalidwrote:
>
Anyone know of any other techniques that I've missed?

I've skinned squirrels. I suppose that's no help. ;)
Here in Texas we have possums ( a flat animal that sleeps in the
middle of the road ). They are too thin to skin so we fillet them.
Jun 27 '08 #5
Dave Kelly wrote:
On May 14, 12:05 am, Blinky the Shark <no.s...@box.invalidwrote:
>>Anyone know of any other techniques that I've missed?
I've skinned squirrels. I suppose that's no help. ;)

Here in Texas we have possums ( a flat animal that sleeps in the
middle of the road ). They are too thin to skin so we fillet them.
Thanks for the laugh.

--
Gus
Jun 27 '08 #6
Nik Coughlin wrote:
Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/
In my opinion only variations of the nesting are in practice, practical.
At least for modern layouts.

I'm not at this time reading alt.html, do you have a pointer for that
post so I can look it up.

I had been working on a "Standard Module Format", whereas the same
"block" could be styled as you wish.

It's not that different than yours:

<div class="skinContainer flat">
<div class="topLeft">
<div class="topRight">
<div class="top"></div>
</div>
</div>
<div class="left">
<div class="right">
<p>nesting technique</p>
</div>
</div>
<div class="bottomLeft">
<div class="bottomRight">
<div class="bottom"></div>
</div>
</div>
</div>

Except I've added an inner wrapper to do the drop shadows, and/or
top/bottom double backgrounds. (I also didn't do the topLeft and
bottomLeft wrappers, but I like that idea.)

I see you can do that (drop shadow) with your left/right classes if
you turn off (not use) the rest. Dropping a shadow on all of it would be
difficult, unless I've missed something.

Also, I wonder if the top container block couldn't be a heading,
since content placed there typically is a heading. You could still have
the nested div inside for corner effects...

Let us (or at least myself) know how this has been working out for you!

I'd like to see more.

Jeff
>
They list different ways to "skin" an HTML element (ie add rounded
corners, drop shadows, various other graphical effects) using images
while still allowing for viewport and text re-sizing.

Anyone know of any other techniques that I've missed?

Any other comments?
Jun 27 '08 #7
"Jeff" <jeff@spam_me_not.comwrote in message
news:N-******************************@earthlink.com...
Nik Coughlin wrote:
>Further to my earlier post in alt.html, I ended up preparing these pages:

http://nrkn.com/skinning/

In my opinion only variations of the nesting are in practice, practical.
At least for modern layouts.
Hi Jeff,

Yes, I think in many ways it's the tidiest of the methods but I've also been
using the positioning technique because of not being able to do alpha
transparency in IE6 using the nesting technique (because the alpha image
filter doesn't have any way to position background images etc)
I'm not at this time reading alt.html, do you have a pointer for that post
so I can look it up.
http://groups.google.com/group/alt.h...4564297ccd195b
I had been working on a "Standard Module Format", whereas the same "block"
could be styled as you wish.

It's not that different than yours:

<div class="skinContainer flat">
<div class="topLeft">
<div class="topRight">
<div class="top"></div>
</div>
</div>
<div class="left">
<div class="right">
<p>nesting technique</p>
</div>
</div>
<div class="bottomLeft">
<div class="bottomRight">
<div class="bottom"></div>
</div>
</div>
</div>

Except I've added an inner wrapper to do the drop shadows, and/or
top/bottom double backgrounds. (I also didn't do the topLeft and
bottomLeft wrappers, but I like that idea.)
I don't quite get what you mean :) Do you have an url I could have a look
at?
I see you can do that (drop shadow) with your left/right classes if you
turn off (not use) the rest. Dropping a shadow on all of it would be
difficult, unless I've missed something.
I combine everything together so that the drop shadow is part of the box, do
you mean adding drop shadow seperately to the box images?

Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Claus Konrad | last post by:
Hi Any good idea on how to obtain a functionality like the Cascating Style Sheet (css) provides to WebApplications when doing a WindowsApp? I want to associate an external "document" to allow...
32
by: Fresh Air Rider | last post by:
Hi I understand that ASP.net 2.0 (Whidbey) is going to reduce coding by 70%. Surely this is going to de-skill or dumb down the developer's task and open up the task of web development to less...
17
by: Alan Silver | last post by:
Hello, I have a page which I am converting to use themes. The page has an HTML <input type="image"> element that is used to post to another page. I would like to replace this with a server...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.