JSFiddle: add missing <style> and <script>

This commit is contained in:
Leopoldthecoder
2016-11-14 18:10:52 +08:00
committed by cinwell.li
parent fa334a09d4
commit 353dab8c55
30 changed files with 1074 additions and 97 deletions

View File

@@ -107,6 +107,40 @@
</el-tooltip>
</div>
</div>
<style>
.box {
width: 400px;
.top {
text-align: center;
}
.left {
float: left;
width: 60px;
}
.right {
float: right;
width: 60px;
}
.bottom {
clear: both;
text-align: center;
}
.item {
margin: 4px;
}
.left .el-tooltip__popper,
.right .el-tooltip__popper {
padding: 8px 10px;
}
}
</style>
```
:::