answersLogoWhite

0


Best Answer

In CSS3 we will be able to do this easily using the border-radius property. In most modern Web Browsers (internet Explorer being the notable exception) you can achieve a rounded corner (or rounded corners) by using the border-radius property. To do this, in your CSS you would use:

border-radius: 15px;

It is important to note that IE doesn't support this and so people using IE will not see a round corner. This may or may not be important depending on the purpose for the rounded corners.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you round div corner in CSS?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make div by using css?

You can make CSS inside a div but not div in CSS. CSS inside div could be done by : <do=iv style="">.


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.


What is a div overlay?

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.


What is the html code to make letter blocks?

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">


What is the difference between the Div and Span tag?

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.


What goes between the quotation marks in a style... attribute?

Yes, anything that goes there needs to be something from CSS. Example: <div style="top: 0; right: 0; position: fixed;"> <p>Some Text Here</p> </div


How do you apply a style to an id in css?

The octothorpe or hash sign precedes the name of the ID attribute: HTML: <div id="sidebar"> CSS: #sidebar { color: red; }


What is the code to remove ads on MySpace 2.0 profiles?

put this on the CSS code: div#topnav, div#header {display:none;} And it removes the nav. bar with it. But ads will not show up.


How can you center a div using css without centering the text?

CSSdiv.center {text-align:center;} will center the text.div.center {margin: 0 auto} will center the div without centering the text.HTML


What does a div tag do when using Dreamweaver CS3 xhtml and CSS?

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.


Where can one find a CSS Align product?

The CSS Align attribute is a tag in CSS which forces a DIV element to be aligned either right, left or center. They are usually found in a CSS document to arrange a page by changing the positions of elements. More information about the CSS Align attribute can be found on the W3schools website.


How do you make the address css on freewebs?

[ 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.