cuemasterfl
Supreme [H]ardness
- Joined
- Jul 5, 2001
- Messages
- 4,181
I just started learning CSS, but what I want to do is be able to replicate those little presentation boxes you see on msn.com (the ones that contain the bullets). Can anyone help?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style>
div.presentation_top {
border : 1px solid #0033ff;
background-color : #99ccff;
width : 300px;
color : navy;
padding-left : 3px
}
div.presentation_cont {
border-bottom : 1px solid #0033ff;
border-right : 1px solid #0033ff;
border-left : 1px solid #0033ff;
width : 300px;
padding-left : 5px
}
</style>
<div class="presentation_top">Blah</div>
<div class="presentation_cont">
foobar
</div>