我的SharePoint网页中有以下标记 : -
<div style="width:1000px; height:1000px;" allowdelete="false" class="noindex" id="WebPartWPQ2" haspers="false" webpartid="e016a540-49da-4220-b779-94f997f7e508">
<table >//how to access this!!!
<tbody>
<tr>
<td>
<span id="part1">
<div id="listFormToolBarTop" style="display: none;">
现在我想要定义一个自定义CSS文件,并且能够访问id为table
的{{1}}内的第一个div
并更改{{的宽度1}}等于WebPartWPQ2
的当前宽度?
有人可以就此提出建议吗?
答案 0 :(得分:5)
只需
#WebPartWPQ2 > table:first-of-type {
//some properties
}