javascript - How to make square in Twitter Bootstrap around the item? -
i trying make web page show in image .i able make 90%.but have 1 issue
- how make square shown in image (a square have triangle in bottom.i know can make square using border .but how make triangle in bottom triangle
- how make contend scrollable mean contend not scrolling use overflow:auto , scroll
)
.bg { background: #597a4d!important; width: 100%!important; } .nav_bar { background: #597a4d!important; border-style: none; height: 44px; border: 0px!important; border-radius: 0px!important; } .display_menu li a{ font-size: 1.2em!important; color: #ffffff!important; } ul.display_menu li:last-child{ background:#3c86d7; } .rowclass { display: block; margin-top: 3%; } .rowclass >div { padding: 3em; text-align: center; } .text_row div{ display: block; border: 1px ; padding: auto; color: #ffffff; margin-top: 3%; } .rowclass span { display: block!important; color: #ffffff; } .logo_image{ width: 60px; height: 60px; } .email_div label { color: #ffffff; font-weight: bold; text-align: center; } .email_div{ width: 50%; margin: auto; } .email_div label { } .email_div input { background: transparent; border: 1px solid #3c86d7; display: inline; width: 50%; } .email_div button { display: inline; } .wrapper{ overflow: auto!important; overflow: scroll!important; }
here plunker: http://plnkr.co/edit/g8mp53rqlf562hekgmgt?p=preview
just this
.wrapper{ overflow: auto!important; overflow: scroll!important height: 200px; }
or desired height instead of
.wrapper{ overflow: auto!important; overflow: scroll!important; }
it start scrolling because scroll if data overflowing
and shape article may don't need use thing use bootstrap tooltip
Comments
Post a Comment