[CSS] Make element not selectable

    .noselect {
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none;   /* Chrome/Safari/Opera */
        -khtml-user-select: none;    /* Konqueror */
        -moz-user-select: none;      /* Firefox */
        -ms-user-select: none;       /* Internet Explorer/Edge */
        user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
    }
时间: 2024-10-19 21:01:07

[CSS] Make element not selectable的相关文章

CSS Selectors

Table of Contents Universal Selector Element Selector Class Selector ID Selector Attribute Selector Attribute Equals Attribute Begins With Attribute Begins With Language Code Attribute Ends With Attribute Contains Attribute Contains Word Group Select

初识 CSS

一.css介绍 1.CSS(Cascading Style Sheets),称为层叠样式表.它可以很方便地给html元素提供样式,提高美观度.其最大的使用目的是让html文档结构和内容的显示样式分离开来. 2.CSS的语法结构:Selector  { Property : Value; } selector:即需要改变样式的元素:property:需要改变的属性:value:属性的值: 3.CSS的引用方式: 1.行内引用:直接在标签中添加style属性,并设置样式: 1 <p style=&quo

css 动画类库Animate.css

地址为:http://daneden.github.io/animate.css/ 源码地址为:https://github.com/daneden/animate.css 简单的使用方法: Animate.css Just-add-water CSS animation animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emph

css笔记13:display用法

1.代码演示: element.html如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta h

Element节点

Element节点对象对应网页的 HTML 元素.每一个 HTML 元素,在 DOM 树上都会转化成一个Element节点对象(以下简称元素节点).元素节点的nodeType属性都是1.Element对象继承了Node接口,因此Node的属性和方法在Element对象都存在.并且元素节点不是一种对象,而是一组对象,这些对象除了继承Element的属性和方法,还有各自构造函数的属性和方法. 实例属性 元素特性的相关属性 Element.id 返回元素的id属性 Element.tagName 返回

CKEDITOR使用与配置

安装: 下载CKEDITOR的文件,解压后复制到工程的WEBROOT目录下就OK! 引用CKEDITOR的JS文件: 新建JSP页面,添加其JS文件<script type="text/javascript" src="ckeditor/ckeditor.js"></script> 注意:1.src的路径. 2.不要写成<script type="text/javascript" src="ckeditor

jquery_ui

/*! jQuery UI - v1.10.4 - 2014-01-17 * http://jqueryui.com * Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js, jquery.ui.accordion.js, jquery.ui.autocomplete.js, jquery.ui.button.js, jquery.ui.datepicker.js,

『ENGLISH』

以A字母开头的词汇 英文 中文 abstract module 抽象模组 access 访问.存取 access control 存取控制 access control information 存取控制资讯 access mechanism 存取机制 access rights 存取权限 accessibility 无障碍性 accessibility information 无障碍网页资讯 accessibility problem 无障碍网页问题 accessible 无障碍的 access

JS可维护性代码

最近在看一本Js的书名叫“Javascript高级程序设计”在里面学到了很多东西,是一本不错的书,非常值得一看. 解耦css/javascript element.style.color="red"; element.style.backgroundColor="blue"; 以上方式css和javascript的太过于紧密:我们应写成: element.className="edit"; css样式和js代码完全分离. 再次优化: var cs