Question : CSS not making border

Im quite new to CSS, and been looking at class's.

I have a div I wanted to put a border around, but for some reason I cant get my div to read the class and put a div around it.

Its probably me being dumb, but any advise anyone can provide would be appriciated.

Thank you
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
<head><title>
	Home Page
</title>

<style type="text/css"> 
cssBorder 
    {
        width: 32%;
        border-bottom-style: solid;
        border-bottom-width: thin;
        float: left;
        margin: 0,0,0,0;
        border-width: 0;
        padding-right: 20px;
    }
</style>
 
</head>
<body>

            
<div class="cssBorder" id="divBelowObjects" style="visibility:hidden; position:absolute; z-index:1;">
 Hello, This is a test
</div>

</body>
</html>

Answer : CSS not making border

Classes need a period '.' in front of the declaration in the style section.
".cssBorder" and ".floatingDiv"
Random Solutions  
 
programming4us programming4us