对于桌子
<table border="1" class="dataframe table table-sm table-hover">
<tr>
<th>Name <a class="buttonautowidth" style="float:left;"
onclick="myFunction()" >Hide/Un-hide</a></th>
...
)后面
CSS:
.buttonautowidth {
font-family: Jost;
float: right;
text-decoration: none;
display: block;
width: auto;
font-style: normal;
font-size: 1rem;
height: 39px;
background: #1E7F9F;
padding: 5px;
text-align: center;
border-radius: 5px;
border-color: none;
text-align: center;
line-height: 1.8;
color: white;
}
非常感谢你的帮助
共2个答案
匿名用户
您不需要使用float。 将“文本”包装在一个跨度中,并让display:内联布局元素。
使用font-weight控制按钮文本。
<table border="1" class="dataframe table table-sm table-hover">
<tr>
<th>
<span margin-right="4px">Name<span>
<a class="buttonautowidth" onclick="myFunction()" >Hide/Un-hide</a>
</th>
</table>
.buttonautowidth {
font-weight: 400;
font-family: Jost;
text-decoration: none;
display: inline;
width: auto;
font-style: normal;
font-size: 1rem;
height: 39px;
background: #1E7F9F;
padding: 5px;
text-align: center;
border-radius: 5px;
border-color: none;
text-align: center;
line-height: 1.8;
color: white;
}
匿名用户
在您的标记中,文本位于按钮之后,这就是它以这种方式显示的原因。 将按钮放置在文本之后,并在它们之间放置任意数量的 ;
字符。 然后,使用font-weight:normal
代替font-style
(用于使文本变为斜体/斜体)。
<table border="1" class="dataframe table table-sm table-hover">
<tr>
<th><a class="buttonautowidth" style="float:left;"
onclick="myFunction()" >Hide/Un-hide</a> Name</th>
...
相关问题
- Android:在模块jefied-play-services-测量和jefied-play-services-测量-impl中发现重复类
- 在Hashmap中查找匹配的键/值对
- 如何迭代Hashmap并与同一Hashmap中的其他键进行组合以比较它们的对象
- HashCode-如果相等的对象碰巧在同一个桶中散列会发生什么?
- 如何防止对数组中类对象的重复引用?
- 如何以及何时在HashMap中完成重新散列
- 在hashmap或hashtable中重新散列的成本
- HashMap如何识别内部数组中的哪些位置包含元素?
- 当HashMap增加其大小时,HashMap中值的索引会发生什么?
- @BeforeClass在ktor测试类中不工作
- Jest vanilla JavaScript JSDOM刷新失败,切换beforeAll到before每一个后的第二次测试中断
- 在笑话中,定义全局变量是否与在BeforeAll中定义相同?
- 静态编程语言中@BeforeAll的正确解决方法是什么
- 线程“main”java. lang.NoClassDefFoundError中的异常:在Intellij[Spring boot]中
- 线程“main”java. lang.NoClassDefFoundError中的异常:org/apache/log4j/ProvisionNode
- 异步管道是否从服务中定义并从组件变量指向的可观察对象取消订阅?
- 结合主体时不更新在模板中的异步管道可观察
- 组件中的Angular 2重复订阅
- 应该在ngOnDestroy()中将Angular组件变量设置为null吗?
- Angular2处理非组件类中的订阅