FAQ: I want to set the label width of an item to a specific value
## Answer
Use "[Style](/en/manual/table-management-style)".
---
## Overview
Use "[Style](/en/manual/table-management-style)" when you want to set the label width of an item to an arbitrary value. The following is a sample of setting the label width of Category A items in a record table to 50px.
## Operation
1. Open the target table.
1. From the navigation menu, click "Manage" - "[Table Management](/en/manual/table-management)".
1. Open the Style tab.
1. Click the New button to display the dialog.
1. Enter an arbitrary title such as "Change label width of Category A items" in the title.
1. Enter the following style in the Style field (for the description below [for=~], use Results_〇〇 for record tables and Issues_〇〇 for time-limited tables).
1. Uncheck "All" in the output destination and check the screen to which you want to apply the above style.
1. Click the Change button in the dialog.
1. Click the Update button at the bottom of the screen.
1. Open the target table and confirm that the above style is applied.
## Sample Code
##### CSS
```
label[for="Results_ClassA"]{
display:block;
width:50px;
}
```
*The above is an example of a label for category A, but the method for specifying each item is shown below.
・ClassA~ClassZ→ClassA~ClassZ
・NumA~NumZ→NumA~NumZ
・DateA~DateZ→DateA~DateZ
(Example 1) A style that sets the label width of the numeric C item to 70px in a record table
##### CSS
```
label[for="Results_NumC"]{
display:block;
width:70px;
}
```
(Example 2) A style that sets the label width of the date B item to 65px in a table with a deadline
##### CSS
```
label[for="Issues_DateB"]{
display:block;
width:65px;
}
```
## Related Information
<div id="ManualList"><ul><li><a href="/en/manual/table-management">Manage Table</a><span>10.02.2024 up</span></li></ul></article>
<ul><li><a href="/en/manual/table-management-style">Table Management: Style</a><span>08.13.2024 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />