I use SmartGWT 4.0 power edition. I need to add one component at lower-bottom corner of the browser.
Here is HTML code. How can I use SmartGWT to achieve this.
<!DOCTYPE html>
<html>
<head>
<style>
#item {
position:fixed;
bottom:0;
right:0;
width: 50%
}
</style>
</head>
<body>
<div id="item">For absolutely positioned elements, the bottom property sets the bottom edge of an element to a unit above/below the bottom edge of its containing element.</div>
</body>
</html>
Here is HTML code. How can I use SmartGWT to achieve this.
<!DOCTYPE html>
<html>
<head>
<style>
#item {
position:fixed;
bottom:0;
right:0;
width: 50%
}
</style>
</head>
<body>
<div id="item">For absolutely positioned elements, the bottom property sets the bottom edge of an element to a unit above/below the bottom edge of its containing element.</div>
</body>
</html>