次のようなHTMLのテーブルが必要です。
C1 Some text right here
C2 Some text here too
C3 And maybe some text here
C4 Basically like a text written with tabbing
C5 You get the point?
ここでリストを使用できる可能性があることはわかっていますが、列(各行の最後の列を除く)の幅を固定したいと思います。LaTeXでは、これは機能します:
\newenvironment{mytable}
{\begin{tabbing}
xxxxxxxxx\=xxxxxxxxx\=xxxxxxxxx\=xxxxxxxxx\=xxxxxxxxx\=xxxxxxxxx\=\kill}
{\end{tabbing} }%
mytable{
C1 \> Some text right here \+\\
C2 \> Some text here too \+\\
C3 \> And maybe some text here \-\\
C4 \> Basically like a text written with tabbing \-\\
C5 \> You get the point?
}
HTML / CSSでこれを実行しようとしましたが、結果は次のようになります。
C1 Some text right here
C2 Some text here too
C3 etc...
任意のヒント?