所以我的问题是在我的标签下我有一个要删除的下划线。我在离子标签上添加了空行,但似乎不起作用。
是否可以删除它?
<ion-item class="checkbox" >
<ion-label></ion-label>
<ion-checkbox class="checkbox-square" (ionChange)="changeEvent($event)"></ion-checkbox>
</ion-item>
这是CSS
.checkbox{
font-size: 1.03rem;
color: $blue-love;
max-width: 400px;
margin: auto;
}
答案 0 :(得分:2)
将此添加到您的CSS
.checkbox .item-inner {
border-bottom: none !important;
}
答案 1 :(得分:-1)
在public void Main()
{
// TODO: Add your code here
var directory = new System.IO.DirectoryInfo(Dts.Variables["User::VarFolderPath"].Value.ToString());
System.IO.FileInfo[] files = directory.GetFiles("DailyReport-*.gz");
DateTime lastModified = DateTime.MinValue;
foreach (System.IO.FileInfo file in files)
{
if (file.LastWriteTime > lastModified)
{
lastModified = file.LastWriteTime;
Dts.Variables["User::VarFileName"].Value = file.ToString();
}
}
// MessageBox.Show(Dts.Variables["User::VarFileName"].Value.ToString());
}
}
元素内添加自定义类:
ion-label
然后使用<ion-label class="custom-label-style">
Label content
</ion-label>
属性设置样式:
text-decoration