<h-row gutter="10" style="max-width: 600px; margin: 0px auto; --gutter:10px;" class="tips">
<h-col span="4"></h-col>
<h-col span="4">
<h-tips tips="topleft topleft topleft topleft some tips" dir="topleft">
<h-button>topleft</h-button>
</h-tips>
</h-col>
<h-col span="4">
<h-tips type="ww" prefix="2223." suffix=".wwwe" tips="some tips" dir="top">
<h-button>top</h-button>
</h-tips>
</h-col>
<h-col span="4">
<h-tips tips="some tips" dir="topright">
<h-button>topright</h-button>
</h-tips>
</h-col>
<h-col span="8"></h-col>
<h-col span="4">
<h-tips dir="lefttop" tips="a a a a a a a a a lefttop lefttop lefttop lefttop lefttop some tips">
<h-button>lefttop</h-button>
</h-tips>
</h-col>
<h-col span="12"></h-col>
<h-col span="4">
<h-tips dir="righttop" tips="a a a a a a a a a lefttop lefttop lefttop lefttop lefttop lefttop some tips">
<h-button>righttop</h-button>
</h-tips>
</h-col>
<h-col span="4"></h-col>
<h-col span="4">
<h-tips dir="left" tips="some tips some tips some tips some tips some tips some tips some tips">
<h-button>left</h-button>
</h-tips>
</h-col>
<h-col span="12"></h-col>
<h-col span="4">
<h-tips dir="right" tips="some tips">
<h-button>right</h-button>
</h-tips>
</h-col>
<h-col span="4"></h-col>
<h-col span="4">
<h-tips dir="leftbottom" tips="a a a a a a a a a leftbottom leftbottom leftbottom leftbottom leftbottom leftbottom leftbottom leftbottom some tips">
<h-button>leftbottom</h-button>
</h-tips>
</h-col>
<h-col span="12"></h-col>
<h-col span="4">
<h-tips dir="rightbottom" tips="a a a rightbottom rightbottom rightbottom rightbottom rightbottom some tips">
<h-button>rightbottom</h-button>
</h-tips>
</h-col>
<h-col span="4"></h-col>
<h-col span="4"></h-col>
<h-col span="4">
<h-tips dir="bottomleft" tips="some tips">
<h-button>bottomleft</h-button>
</h-tips>
</h-col>
<h-col span="4">
<h-tips dir="bottom" tips="some tips">
<h-button>bottom</h-button>
</h-tips>
</h-col>
<h-col span="4">
<h-tips dir="bottomright" tips="some tips">
<h-button>bottomright</h-button>
</h-tips>
</h-col>
</h-row>
<style>
.tips h-col h-tips h-button {
width: 100px
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77