iT邦幫忙

2021 iThome 鐵人賽

DAY 14
0
自我挑戰組

C# 學習之旅系列 第 14

ASP.NET MVC 從入門到放棄(Day14)- Html Css 結構介紹

  • 分享至 

  • xImage
  •  

接下來講講 html + CSS + javascript + bootstrap基本介紹細節部分 Day1有提供教學支援連結...
不過MVC C# 有Razor 語法 可以快速生成html部分...後續會講到初步先了解一下 html架構即可

<!DOCTYPE html>
<html>
<head>
<style>
.a {
  color: white;
}


#b {
  background-color: lightblue;
  color: black;
  padding: 40px;
  text-align: center;
}

</style>
</head>
<body>

<div class="a">
  <h2>hello1</h2>
</div>

<h1 id="b">hello2</h1>

<input type="text" id="test">
<input type="button" value="Show me" onclick="ShowValue()">

<ul class="nav nav-pills nav-justified">

</ul>

</body>
</html>

<script type="text/javascript">
function ShowValue(){
 var v=document.getElementById("test").value;
 alert(v);
}
</script>

1.CSS 優先順序 !important >id > class > element

2.id CSS 前面要# ex:#b

3.class CSS 前面要. ex:.a

4.javascript 通常使用的是id ex: id text

5.bootstrap 通常使用的是Class ex:class="nav nav-pills nav-justified"

6. 只是宣告這份文件是Html5文件


上一篇
ASP.NET MVC 從入門到放棄(Day13) -C# HttpClient 泛型功能介紹
下一篇
ASP.NET MVC 從入門到放棄(Day15)-SQL 語法基本介紹
系列文
C# 學習之旅30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言