You can make CSS inside a div but not div in CSS. CSS inside div could be done by : <do=iv style="">.
I believe you mean divs. These can be made using the following tag: <div> Divs can be styled using CSS. You can specify a class or id to your div in the following way: <div class="classname"> and <div id="idname">
[ Assuming the question can be asked as, "How do you make the address (In the header) more dynamic with CSS on FreeWebs?" ] If you are using a FreeWebs template, you cannot edit any CSS. If you are using raw HTML + CSS, you can wrap the address in a tag such as <span> or <div>, and define some properties to the element with CSS.
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.
A div is a block element. This means that if you use a div, unless you float objects next to it using CSS, the div will be alone on a line. A span is an inline element. This means that unless you use line breaks next to it or change it to a block element using CSS, the span will be on the same line as whatever is next or before to it in the code. For example: This is a <div>element</div> text is above and below but not beside This is a <span>element</span>, text is before and after on the same line.
CSSdiv.center {text-align:center;} will center the text.div.center {margin: 0 auto} will center the div without centering the text.HTML
from my limited knowledge a <div> is a tag used to make a "division" in the webpage (like tables but cleaner) the beauty of the <div> is that it doesn't have any visual effects as just <div> so it is perfect to use with css (<div class="name">} the word "class" would be represented in css as . and name would show as .name meaning you can set the height, width, colour, style, font etc.. for content that appears inside that div.
The division tag is a "div" and is used to divide a page into sections. A div tag can be used to style a section, and style one or more sections differently than other sections.
You can't make border lines with HTML - you use CSS. <div id="mydiv">Content</div> <style type="text/css"> #mydiv {border: solid black 1px;} #mydiv {border: dashed red 1%;} #mydiv {border: none;} </style>
Div tags are elements of web pages. You cannot make a web page using solely a div tag. You would need to do something like: <html> <head> <title>Your HTML Document</title> </head> <body> <div>web page information goes here</div> </body> </html> But there is no real reason to use the div tag except if you want to assign a style to it, in which case you would need to add a style sheet in between the <head> and </head> tag or add a style property to the div tag. You can learn more about web page design by visiting the links provided below.
You cannot "Make" something with CSS. CSS only decorates the elements on a page.
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>
Don't really need to use CSS, but you can set each image as a background of a div container, or use the image tag inside block level tags like div or paragraph tags. These will ensure that the images go below each other. You can also use unordered list tags, table tags, etc.. The only CSS used then is to make it look the way you want the page to look.