我正在尝试使用AngularMaterial构建对话框,并且在演示中它具有CSS代码:

.dialogdemoBasicUsage #popupContainer {
  position: relative;
}

.dialogdemoBasicUsage .footer {
  width: 100%;
  text-align: center;
  margin-left: 20px;
}

.dialogdemoBasicUsage .footer, .dialogdemoBasicUsage .footer > code {
  font-size: 0.8em;
  margin-top: 50px;
}

.dialogdemoBasicUsage button {
  width: 200px;
}

.dialogdemoBasicUsage div#status {
  color: #c60008;
}

.dialogdemoBasicUsage .dialog-demo-prerendered md-checkbox {
  margin-bottom: 0;
}


在我的angularJS项目中-该代码放在哪里?我是否要创建一个新的.css文件,然后对其进行引用,是否必须在该文件周围放置任何内容?

最佳答案

这与在普通HTML应用程序中进行操作的方式相同。

将CSS代码添加到名为style.css的文件中,在内部进行引用

<head>
  <title>To Do List</title>
  <link href="style.css" rel="stylesheet" />
</head>


DEMO

08-08 03:44