所以我得到了我的代码和theese颜色气泡的东西不会对齐工具栏我已经包括所有的代码。除了javascript,我认为不需要。
它是一个简单的绘图应用程序,我需要在工具栏上显示“彩色气泡” 他们有点垂下来。 请帮帮我!
HTML CODE:
<html>
<head>
<title>Project - Draw</title>
<link rel="stylesheet" href="drawstyle.css">
</head>
<body style='margin:0'>
<div id="toolbox">
<div id="rs">
Radius <span id="rsvalue">10</span>
<div id="decrs" class="rscontrol">-</div>
<div id="incrs" class="rscontrol">+</div>
</div>
<div id="colors">
<div class="swatch active"></div>
<div class="swatch"></div>
<div class="swatch"></div>
</div>
</div>
<canvas id="canvas" style="display: block;">
Your browser dose not support this application. Get Chrome!!! :(
</canvas>
<script src="draw.js"></script>
<script src="radius.js"></script>
</body>
** CSS代码:**
*{
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family: sans-serif;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
#toolbox {
width: 100%;
height: 50px;
padding: 10px;
position: fixed;
top: 0;
background-color: #2B2B2B;
color: #D4D4D4;
}
.rscontrol {
width: 30px;
height: 30px;
background-color: #9E9E9E;
display: inline-block;
text-align: center;
padding: 5px;
}
#rscontrol {
float: left;
}
#colors {
float: right;
}
.swatch {
width: 30px;
height: 30px;
border-radius: 10px;
box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px
rgba(0, 0, 0, 0.5);
display: inline-block;
margin-left: 10px;
}
我知道它并非全部正确对齐^ CSS ^但它在我的版本中我只需要做8个空格就可以让它显示为'代码'。
Here is a screenshot。他们在右上方。你也可以see a live version here。
答案 0 :(得分:1)