タグ付けされた質問 「width」

X軸上のオブジェクトのサイズを決定するプロパティ。この測定の最も一般的な形式は、ピクセルまたはミリメートルです。

13
tdの幅、機能しない?
だから私はこのコードをここに持っています: <table> <tr> <td width="200px" valign="top"> <div class="left_menu"> <div class="menu_item"> <a href="#">Home</a> </div> </div> </td> <td width="1000px" valign="top">Content</td> </tr> </table> CSSを使って .left_menu { background: none repeat scroll 0 0 #333333; border-radius: 5px 5px 5px 5px; font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bold; padding: 5px; } .menu_item { background: none repeat scroll …
93 html  css  html-table  width 

8
Cで端子幅を取得していますか?
Cプログラム内からターミナルの幅を取得する方法を探しています。私が思いついているのは、次のようなものです。 #include <sys/ioctl.h> #include <stdio.h> int main (void) { struct ttysize ts; ioctl(0, TIOCGSIZE, &ts); printf ("lines %d\n", ts.ts_lines); printf ("columns %d\n", ts.ts_cols); } しかし、私がそれを試すたびに、 austin@:~$ gcc test.c -o test test.c: In function ‘main’: test.c:6: error: storage size of ‘ts’ isn’t known test.c:7: error: ‘TIOCGSIZE’ undeclared (first use in this …
89 c  linux  terminal  width 

4
TextViewの幅を文字数で設定します
本当にこれに対する答えを探しています。 数値または文字に基づいてTextViewの幅を設定したい。したがって、常に3文字の幅にしたい場合は、それを設定すると、textSize設定に基づいて調整されます。これがないと、幅を50dip程度に設定する必要がありますが、フォントサイズによっては正しい場合とそうでない場合があります。



弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.