Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Web Authoring / June 2004

Tip: Looking for answers? Try searching our database.

Absolute Positioning of text in HTML for Word 2000

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Brian Cowie - 25 Jun 2004 19:00 GMT
I trying to absolutely position text in HTML using CSS position
absolute top/left. The HTML being built will be used for viewing in
both a browser and Word 2000. The text is positioned as expected when
the HTML is viewed in a browser, but not when viewed with Word 2000.
It would appear as though the absolute positioning is ignored by Word.

Does anyone have experiece resolving this problem or any thoughts on
how to resolve this problem?

Thanks in advance.
Joel Konkle-Parker - 25 Jun 2004 20:14 GMT
>Does anyone have experiece resolving this problem or any thoughts on
>how to resolve this problem?

As much as it pains me to say it, you might need to use a table
instead.

- Joel
lostinspace - 26 Jun 2004 01:22 GMT
----- Original Message -----
From: "Brian Cowie" <>
Newsgroups: microsoft.public.word.web.authoring
Sent: Friday, June 25, 2004 2:00 PM
Subject: Absolute Positioning of text in HTML for Word 2000

> I trying to absolutely position text in HTML using CSS position
> absolute top/left. The HTML being built will be used for viewing in
[quoted text clipped - 6 lines]
>
> Thanks in advance.

1) It seems MSIE uses the content-edge instead of the padding edge.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnie60/html/css
enhancements.asp


2) how about this:

body {margin:0px}
#content { }
#menu {float:left; width:20%; margin-right:5%}

Also note that position:relative positions an element relative to its
normal (i.e. static) position.

3) Try this

<style>

#contact {
position:absolute;
z-index:1;
left:625px;
top:25px;
font-family: Arial, Times, san-serif;
font-size: 12px;
color: #66CCCC;
}

</style>

<SPAN id="contact" name="contact" >Contact Information</SPAN>

You cannot absolutely position a class, you have to give each element a name
and an id

4) the above were all found in a google groups search on "absolute
positioning IE "

http://groups.google.com/groups?q=absolute+positioning+IE&hl=en&lr=&ie=UTF-8&sta
rt=10&sa=N


If 1-3 fail to satisy or be effective in Word? Try the other 7,260 threaded
returns.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.