我需要使用JAVA在HTML中并排打印两个表的输出。但是它们不是并排打印的。我正在使用以下代码。有人请为此提供建议
% n_times(N) :- N =< 1.
% n_times(N) :- N > 1, N1 is N - 1, n_times(N1).
def n_times(n):
foreach solution to { n =< 1 }: % succeeds at most once
yield n
foreach solution to { n > 1 }: % at most once, mutually exclusively
foreach solution to { n1 = n - 1 }: % there will be only one solution
n_times(n1)
答案 0 :(得分:1)
在HTML / CSS中,您需要使第一个表格浮点数:left;第二个表在左边距
例如
\0
table{
border: solid;
}
#one{
float: left;
}
#two{
/* margin has to be atleast the width of #one */
margin-left: 50px;
}