12345678910111213141516171819202122232425262728 |
- .canvas {
- width: 100%;
- height: 200px;
- float: left;
- margin-bottom:10px;
- background:#fff;
- position:relative;
- }
- .canvas canvas {
- float: left;
- display: block;
- }
- /*附言*/
- .fuyan {
- width: 80px;
- height: 25px;
- line-height: 25px;
- font-size: 16px;
- text-align: center;
- background: #E0E0E0;
- cursor: pointer;
- color: #333;
- position: absolute;
- right: 0;
- top: -25px;
- border-radius: 10px 10px 0 0;
- }
|