Switch to full style
HTML code examples
Post a reply

Add dashed border to text div

Thu Feb 23, 2012 12:28 am

In this example we add dashed border to the div tag using CSS attributes .
Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

<
head>
  <title>Add dashed Border to div</title>
  <style rel="stylesheet" type="text/css">

div.dashed {
  border-style: dashed;
  border-color: #325432;
  border-width: 1px;
  width:200px;
}

</
style>
</
head>

<
body>
<
div class="dashed">

<
>In this example we add dashed border to 
the div part
.</p>
</
div>
</
body>
</
html>
 




Post a reply
  Related Posts  to : Add dashed border to text div
 Draw Dashed Oval in java     -  
 Able to Copy Text from Uneditable Text Boxes(JTextfields)     -  
 Border around JPG img     -  
 Add solid Border to div     -  
 Add dotted Border to div     -  
 Java- Copy text area into disabled text area     -  
 separate border collapse example     -  
 set the size of border in pixels     -  
 Set border bottom color     -  
 change border style to solid at div tag     -  

Topic Tags

HTML Div