这是我的HTML代码
<div id="vertical-chart-total-calls-statuses" class="chart-holder" style="border:10px #000">
<canvas class="overlay" width="478" height="265"></canvas>
</div>
我使用图书馆绘制画布。
我的问题是div vertical-chart-total-calls-statuses
没有边框。为什么请?
感谢
答案 0 :(得分:4)
答案 1 :(得分:4)
您尚未指定边框样式。
你可以使用任何一种风格,它会出现。
例如:
border: 10px #000 solid;
border: 10px #000 dashed;
border: 10px #000 groove;
border: 10px #000 inset;
border: 10px #000 outset;
等...
点击here了解详情。
答案 2 :(得分:2)
您需要指定边框的类型,例如solid
,dotted
,dashed
。
将您的样式属性更改为border:10px solid #000;
,它会起作用。