Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Layout Question #2
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01449930
Message ID:
01449946
Views:
33
>I placed an image on the page. It's horizontal across the top of the page. I want to place a label over the image centered horizontally on the page. Dragging has no effect.
>
>How do I do this????

Simplest may be to use absolute positioning for the label. Something like this:
<body>
    <img src="whatever" />
    <label style="position: absolute; left: 20px; top: 100px">
        Hello World
    </label>
</body>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform