Skip to content

Instantly share code, notes, and snippets.

@bradgignac
bradgignac / gist:3745836
Created September 18, 2012 20:54 — forked from tripngroove/gist:3718494
Fluid width popover labels
<html>
<head>
<style>
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding:0; margin:0; }
body, input, textarea, select,ul,li { font:13px/20px Arial, sans-serif; color:#333; }
.page { width:800px; margin:0 auto; padding:30px; }
.popover { border:1px solid #ccc; display:inline-block; padding:20px; box-shadow:2px 2px 10px rgba(0,0,0,0.25); }
.table { display:table; }
.row { display:table-row; }
.cell { display:table-cell; padding-bottom:20px; }