Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div class="wrapper_wrapper">
    <div class="info_wrapper">
      <div class="info_block">100px-1</div>
      <div class="info_block">100px-2</div>
      <div class="info_block">100px-3</div>
    </div>
  </div>
<style>
.wrapper_wrapper{text-align:center; }
  
.info_wrapper {
    display:inline-block; // hack 多余的空白
    border: 1px dashed black;
    font-size:0;
}
 
.info_block {
    font-size:14px; // 补救 "hack 多余的空白" 造成的问题
  width: 100px;
  border: 1px solid red;
  display: inline-block;
}
</style>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
FrankFangpro
0viewers