摘要:
参考:http://www.w3school.com.cn/cssref/pr_opacity.aspopacity 属性设置元素的不透明级别。所有浏览器都支持 opacity 属性。注释:IE8 以及更早的版本支持替代的 filter 属性。例如:filter:Alpha(opacity=50)。... 阅读全文
摘要:
参考:http://www.w3school.com.cn/tiy/t.asp?f=csse_zindexcursor 属性规定要显示的光标的类型(形状)。请把鼠标移动到单词上,可以看到鼠标指针发生变化:AutoCrosshairDefaultPointerMovee-resizene-resize... 阅读全文
摘要:
参考:http://www.w3school.com.cn/cssref/pr_pos_z-index.aspz-index 属性设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面。注释:元素可拥有负的 z-index 属性值。注释:Z-index 仅能在定位元素上奏效(例... 阅读全文
摘要:
1.新建项目,MVC选择基本模板2.新建类:Model/Student.cs,数据库信息有三个实体:分别是年级、班级和学生。using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotation... 阅读全文
摘要:
1.首先在程序包管理控制台输入:enable-migrations-force,然后回车; 问题1: The EntityFramework package is not installed on project 解决: 控制台输入Install-Package EntityFramework 问题... 阅读全文
摘要:
标签如何做到与一样有提交页面信息的效果?@using (Html.BeginForm("Login", "User", FormMethod.Post, new { @id = "formId" })){}登录 阅读全文