How to place a button in a div tag

How to place a button in a div tag

CountLessQCountLessQ Posts: 33Questions: 9Answers: 0

i have this sample: http://live.datatables.net/juxogora/1/edit I can't seem to display the btn in the bottom left of the fixed footer div tag.
Also I can't disable the hoover affect. I tried this:
.dt-button.red.tooltip {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.dt-button.red:hover .tooltip {
visibility: visible;
}

                                                    .dt-buttons .dt-buttons:hover {
                                                        background: none;
                                                    }

                                                    .dt-buttons .dt-buttons:active {
                                                        background: none;
                                                    }

Thank you

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.