need help with css to have a 50px image with padding border

This is a discussion on "need help with css to have a 50px image with padding border" within the Web Page Design section. This forum, and the thread "need help with css to have a 50px image with padding border are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 26th, 2008, 10:18
New Member
Join Date: Feb 2008
Location: london
Age: 26
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
need help with css to have a 50px image with padding border

Hi,

I need some advise on how can I do the following:

1. have 50px width 50px height image placeholder in a td tag
2. have padding 5 px around the image and then a border.
3. I want the td tag to be say 100 px width and height, and want the image place hold to be in the center.

To be more specific I am trying to have the "image format" like the following yahoo answer link:
http://answers.yahoo.com/question/in...4003022AAmKIHL

Hence, I am trying to get a Image with 5px pading surrounding a border

Could someone please advise me the best way to implement the css.

Thanks,
Ket
Reply With Quote

  #2 (permalink)  
Old Feb 26th, 2008, 11:05
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 1,012
Blog Entries: 2
Thanks: 5
Thanked 23 Times in 20 Posts
Send a message via Skype™ to Aso
Re: need help with css to have a 50px image with padding border

Give the <td> tag an ID of holder, like so
Code: Select all
<td id="holder">
The use the following CSS
Code: Select all
#holder {
width: 100px;
height: 100px;
text-align: center;
}
#holder img {
vertical-align: middle;
padding: 5px;
border: 1px solid #fff;
}
If you want further help, please post your code (or a link to it)

HTH
Last Blog Entry: The Google Misconception (Feb 3rd, 2008)
Reply With Quote
  #3 (permalink)  
Old Feb 26th, 2008, 12:11
New Member
Join Date: Feb 2008
Location: london
Age: 26
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: need help with css to have a 50px image with padding border

ah perfect, it works perfectly thank you sooooo much, very much appreciated.

Thanks
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Removing bottom border from image links dulcificum Web Page Design 4 Jun 5th, 2008 23:47
50px.com etoxin Free Web Site Critique 9 Jan 7th, 2008 16:14
Simple CSS Error. Please Help (Padded Border Around Image) tharshan Web Page Design 4 Mar 11th, 2007 00:37
Linked image keeps displaying a border? ricoantinoro Web Page Design 11 Dec 8th, 2006 23:27
Padding on #header background image.. IE6/Firefox. rooraaahcrumbs Web Page Design 1 Apr 26th, 2006 20:49


All times are GMT. The time now is 02:56.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43