我正在为水平标签组件创建一个无序列表。我希望每个列表项填充三个框中的一个,图像上显示的长度和高度均匀。这是我的jsFiddle和javascript。我应该在CSS上做些什么来改变这种情况?
$(function(){
$('#tabs').tabs({
event: "mouseover"
});
});
这是jsfiddle。
答案 0 :(得分:1)
HTML & CSS: How to create four equal size tabs that fill 100% width?
我昨天尝试过桌子,但昨天没用。然而,它今天似乎工作所以我发布它以防有人与我共享同样的问题
答案 1 :(得分:1)
很好的解决方案。
建议和解决方案之一也是查看bootstrap组件,并正确包含类:
List<string[]> dataCollection = new List<string[]>();
List<string> timeCollection = new List<string>();
private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
{
string time = DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss.ff");
if (x == unit && count == 3)
{
dataCollection.Add(ReceivedData);
timeCollection.Add(time);
for (int i = 0; i < dataCollection.Count(); i++) //write out all the data lines
{
string[] dataArray = dataCollection[i];
string dataOutput = "";
for (int j = 0; j < dataArray.Length; j++)
{
dataOutput += dataArray[j] +" "; //Link all data to write out
}
for (int k = 4; k > timeCollection.Count(); k--)
{
string[] timeArray = timeCollection[k]; //error for timeCollection[k]
string timeOutput = "";
for (int t = 0; t < timeArray.Length; t++)
{
timeOutput += timeArray[t];
}
}
&#13;
我认为这也有帮助,你可以节省大量的设计时间:)