answersLogoWhite

0


Best Answer

Yes. Set it out like normal HTML and in outlook go under Options -> Format -> HTML and in theory any HTML should work other than maybe HTML 5.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you place an HTML div with a scrollbar in an email?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Div class tags for HTML?

<div>hjghj<div> is a layer


How do you get a scrollbar on your HTML?

You need to make the height (or width) bigger than the browser window, so you can scroll down. There is no HTML code for a scroll bar. You need to make the page long (or wide) enough, otherwise there would be nothing to scroll down (or sideways) to. Example: <html> <head> <style type="text/css" > #main { width:1000px; height:1500px; } </style> </head> <body> <div id="main"> <h1>My website</h1> <p>This is my website, and as you can see, it has scroll bars.</p> </div> </body> </html>


What does div mean?

A div tag in HTML represents a division, usually with its own style, class, or alignment. For example, the HTML <div align=center>Text</center> would align the text in the center of the page


How do you post in blogger using HTML?

<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">


Is the 'div' tag part of HTML or XHTML?

The "div" tag is part of both languages.


In HTML how do you put the text boxes next to each other?

<html> <head><title></title></head> <body> <div position :absolute; top : 200px; left : 50px; border : solid;> This is first Box </div> <div position :absolute; top : 200px; left : 150px; border : solid;> This is Second Box </div> </body> </html>


What is the absolute position of div in HTML?

It can be anything, even a negative value. Set the position with#{left: ?; top: ?;}Until you set these values, the div will stay in the same place as it was in #{position: static} (the default state).


What does the prefix div mean?

<DIV> is not a prefix, it is a tag. A DIV element is a container for other HTML elements and is used for positioning and structuring content in the document


How do you center a div in Google Chrome?

If you center a <div> in Chrome, it becomes center. It can be changed in the HTML file of the source.


What is web container?

depends what code you're talking about. if it's html, a container would be the code that contains content ("bla bla") <html> <head> <title> bla bla </title> </head> <body> </body> </html> in css, it would be whatever div tag you create such as: <div class="container"> bla bla </div>


How can you construct website using div tag?

The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS.


How do you get text to stay in the same place using HTML?

Your question isn't the clearest, so I'll guess you want the text to float above the rest of the content. The solution is CSS. This code snippet will embed the CSS style rules in the HTML: <div style="display:block;position:fixed">Your text goes here</div>