我的问题类似于这个问题(),但这个问题不清楚,答案对我没有帮助。
我有这个SSCCE (使用):
public static final int pref_height = 500;
public static void main(String[] args) {
JPanel innerPanel = new JPanel(new MigLayout());
innerPanel.setBorder(new LineBorder(Color.YELLOW, 5));
for(int i = 0; i < 15; i++) {
JTextAre
我有一个表格,在表格的顶部是带有一些文本的表格标题。我想只在表体上放一个边框,表头不动,但我不知道怎么做。 我只尝试给表体的默认类应用边框。 <table class="float-left">
<thead>
<tr class="text-center">
<th>
This is some text I want outside of the border
</th>
</tr>
</thead>
<tbody>
<