<style>
.nametext{background-image:url([Link](Mouse over link to see full location); overflow:hidden;height:200px;width:200px; font-size:0.5px;text-align:left;color:000000;padding: 6px 6px 6px 6px;<----
Padding does create space around an element, as does margin and border. However, it interacts with other elements differently than margin and border. See this document, and especially the first image: [Link](Mouse over link to see full location)
In your code, there are 6px of space around the content. Padding:6px would have had the same effect, but it's shorter.
Background-position is where the background image starts. Background-position:1px 2px will place the background image 2px from the top of the page and 1px from the left. Background-position:relative is not valid. It should do nothing. They might have confused it with position:relative.
If an element's contents is too big to fit within its height and width, it overflows. Overflow:hidden makes all overflowing content not appear on the page. Overflow:auto would make scrollbars appear on the element and overflow:visible would make the content ignore the height when overflowing (usually resulting in a mess). [ theymos's advice column | Ask theymos A Question ]
stargirl51 answered Wednesday August 6 2008, 6:12 pm: Padding means the space around your image.
Background-position means the position of your background: center, fixed, etc.
Attention: NOTHING on this site may be reproduced in any fashion whatsoever without explicit consent (in writing) of the owner of said material, unless otherwise stated on the page where the content originated. Search engines are free to index and cache our content. Users who post their account names or personal information in their questions have no expectation of privacy beyond that point for anything they disclose. Questions are otherwise considered anonymous to the general public.