div border-right: 1px solid #000000; : div border « Tags « HTML / CSS






div border-right: 1px solid #000000;

     
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
div {
   border: 5px double #000000;
   height: 150px;
   width: 150px;
   padding: 10px;
   margin: 25px;
   border-right: 1px solid #000000;
   padding-right: 1px;
   margin-right: 1px;
}
</style>
</head>

<body>
  <div>
    <ul class="noindent">
      <li>Moby Dick</li>

      <li>The Red Badge of Courage</li>

      <li>The Catcher in the Rye</li>
    </ul>
  </div>

  <div>
    <ul class="noindent">
      <li>The Red Queen</li>

      <li>The Awakening</li>

      <li>The Scarlet Letter</li>
    </ul>
  </div>
</body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.div border: 1px solid rgb(154, 157, 203);
2.div border-width: thin;
3.div border-width: medium;
4.div border-width: thick;
5.div border-color: khaki;
6.div border-style: solid;
7.div border-top-width: 2px;
8.div border-right-width: 4px;
9.div border-bottom-width: 8px;
10.div border-left-width: 10px;
11.div border-width: 2px 4px 8px 10px;
12.div border-width: 2px 4px 8px;
13.div border-width: 8px 4px;
14.div border-width: 4px;
15.div border-color: red;
16.div border-top-style: solid;
17.div border-right-style: dashed;
18.div border-bottom-style: double;
19.div border-left-style: inset;
20.div border-style: solid dashed double inset;
21.div border: 1px solid rgb(128, 128, 128);
22.div border: 5px double #000000;
23.Div border: none;
24.Div border-top: 1px solid #9E6E2E;
25.DIV border: 1px solid #ccc;
26.DIV border-bottom: 1px dashed #ddd;
27.DIV border-bottom: 1px solid #d8d8d8;
28.DIV border-left: 4px solid #ccc;
29.DIV border-right: 1px solid #d8d8d8;
30.DIV border-top: 1px solid #d8d8d8;
31.Set border of DIV to 5px double #000000
32.Set right border of DIV to 1px solid #000000