【问题标题】:Need help targeting a sharepoint column to change width需要帮助定位共享点列以更改宽度
【发布时间】:2020-03-15 07:05:55
【问题描述】:
我想更改共享点列表视图中列的最大宽度。出于某种原因,这将有助于增加作为多行文本字段的列,但不会减少它。
这是我尝试过的
<style type='text/css'>
td.ms-vb2[DisplayName="Current Issue or Update"]
{
max-width:100px !important;
}
</style>
【问题讨论】:
标签:
css
sharepoint-2013
column-width
【解决方案1】:
如果是多行文本字段,请使用下面的Jquery设置以“ExternalClass”开头的类的样式:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("[class*='ExternalClass']").css('max-width', '50px');
});
</script>