码迷,mamicode.com
首页 >  
搜索关键字:css 外边距合并 border width    ( 86715个结果
前端是做什么的?和后端有什么不同?
前端一般指的是用户可以看到的页面,比如网页、客户端,浏览时看到的任何东西都是前端完成的,就像现在浏览百家号所看到的文字、图片、logo都是有前端完成。而后端则指的是服务器,是指存储这些内容的地方。 前端的发展历史只要有三个阶段。 第一个阶段是html、css、JS都是写一下静态的页面,所以说前端工程 ...
分类:其他好文   时间:2021-03-09 13:57:04    阅读次数:0
Android实现水平虚线和竖直虚线
水平虚线 shape: line-horizontal.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape ...
分类:移动开发   时间:2021-03-09 13:55:09    阅读次数:0
idea中将单个java类导出为jar包文件的方法
方法如下: 1. 写好功能工具类,如: public class Hello { public static void main(String[] args) throws Exception { Hello hello = new Hello(); hello.sayHello("word. bi ...
分类:编程语言   时间:2021-03-09 13:53:56    阅读次数:0
git概念理解
看到一个图,感觉很好,图来源于博客: https://blog.51cto.com/13718210/2130849 下图参考博客: https://www.pianshen.com/article/12891732046/ git简明指南: https://www.runoob.com/manua ...
分类:其他好文   时间:2021-03-09 13:47:58    阅读次数:0
Wordpress 删除 Storefront 主题的购物车
检查元素定位到购物车,将display属性改为none, 并将下列代码粘贴到 Additional CSS中。 .site-header-cart .cart-contents { padding: 1.618em 0; display: none; position: relative; back ...
分类:其他好文   时间:2021-03-09 13:40:12    阅读次数:0
[CSS] Choose between Grid layout and flexbox
1. Grid: by default showing content in Y axis (column), Flex: by default showing content in X axis. Exp: If you want to style a header.. you can use f ...
分类:Web程序   时间:2021-03-09 13:32:34    阅读次数:0
1 事件注册
一 事件注册 二 事件处理 //2 事件处理 on() 绑定事件 $("div").on({ click:function () { $(this).css('background','red'); },//绑定事件1 mouseenter:function () { $(this).css('ba ...
分类:其他好文   时间:2021-03-09 13:25:43    阅读次数:0
CSS3新增选择器
CSS3新增选择器 :first-child 表示第一个子元素是... :last-child :nth-child(numberloddleven/倍数) :first-of-type 表示第一个子元素 :last-of-type :nth-of-type (numberloddleven/倍数) ...
分类:Web程序   时间:2021-03-09 13:18:32    阅读次数:0
8、CSS背景使用实例演练
CSS背景使用实例演练 下面介绍和背景相关的css属性,背景是所有的标签都具有的css属性。 背景有以下几种常用属性: 背景颜色 background-color:颜色 背景图片 background-image:url( ‘ ’ ) 背景重复方式 background-repeat:重复方式 ba ...
分类:Web程序   时间:2021-03-09 13:13:25    阅读次数:0
Maximum width
Maximum width 给定字符串S和T,保证T是S的子序列,求解T在S中对应位置相邻的两个之间距离的最大值。 考虑直接贪心,对于位置i和 i+1,让1到i的子串从前向后匹配,i+1到m的子串从后向前匹配,这样就能让左端点尽量靠左,右端点尽量靠右,距离就是最大的。具体实现可以计算出每个匹配的位置 ...
分类:其他好文   时间:2021-03-09 13:13:07    阅读次数:0
86715条   上一页 1 ... 56 57 58 59 60 ... 8672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!