请大家帮助我...侧边栏将始终处于活动状态,因此我需要将内容集中在网页上,例如突出显示的文本。问题在于它以整个页面的宽度为中心计算侧边栏。能以某种方式划分宽度吗?侧边栏是用自行车制作的,它是用cols制作的,所以我不知道确切的宽度。
答案 0 :(得分:1)
您可以发布您的代码,但一般的想法是让您在sidenav(右侧)旁边放置一个div
,您可以通过将margin-left
设置为宽度来实现sidenav
中的文字div
和居中位置var theModel as EA.Package;
theModel = Repository.Models.GetAt( 0 );
// Iterate through all views (top level packages) in the model
var viewEnumerator = new Enumerator( theModel.Packages );
while ( !viewEnumerator.atEnd() )
{
var currentView as EA.Package;
currentView = viewEnumerator.item();
// Add the name of this view to the output window
Session.Output( currentView.Name );
// Iterate through all diagrams in this view
viewEnumerator.moveNext();
}