I have a Div which puts a backround colour behind a section of my page.
Within that I have another div which holds a table and another div which is used to hold a button.
I want the button to be aligned to the right of its containing div.
I have attached a picture to show my problem, I need the button to be in its right aligned position but within the green border just above it.
.shadowcontainer {
margin-right: 3px;
margin-bottom: 3px;
margin-top:3px;
background: #F4F4F4;
padding: 10px;
}
div.right-button-container-Grey
{
display:block;
border:1px solid green;
}
div.fullwidth{
width:100%;
position:relative;
}
div.right-button-container-Grey input
{
display:inherit;
position:relative;
bottom:0;
right:0;
float:right;
margin-top:5px;
margin-left:5px;
margin-right:2.5px;
}





Reply With Quote