<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播图</title> <style> * { margin: 0; padding: 0; } #outer { width: 520px; height: ...
分类:
Web程序 时间:
2021-04-06 14:15:33
阅读次数:
0
1.解释一下display的几个常用的属性值,inline , block, inline-block inline: 使元素变成行内元素,拥有行内元素的特性,即可以与其他行内元素共享一行,不会独占一行. 不能更改元素的height,width的值,大小由内容撑开. 可以使用padding,marg ...
分类:
其他好文 时间:
2021-04-01 13:34:51
阅读次数:
0
<span style="padding:0px; margin:0px"><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch ...
分类:
其他好文 时间:
2021-03-30 13:54:44
阅读次数:
0
在 CSS 盒子模型的默认定义里,你对一个元素所设置的 width 与 height 只会应用到这个元素的内容区。如果这个元素有任何的 border 或 padding ,绘制到屏幕上时的盒子宽度和高度会加上设置的边框和内边距值。这意味着当你调整一个元素的宽度和高度时需要时刻注意到这个元素的边框和内 ...
分类:
其他好文 时间:
2021-03-30 13:23:01
阅读次数:
0
##效果图: ##代码如下: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> *{ margin:0px; border: 0px; box-sizing:border-box; } div{ border: ...
分类:
其他好文 时间:
2021-03-29 12:20:24
阅读次数:
0
和安卓中的CardLayout一样,具体实现方法,多多琢磨。要实现如下的效果 class Layout extends StatelessWidget { @override Widget build(BuildContext context) { return ListView( children ...
分类:
其他好文 时间:
2021-03-26 15:15:27
阅读次数:
0
##基础居中布局 .wrap{ width:1000px; margin:0 auto; } </style> <div class="nav wrap"></div> <div class="header wrap"></div> <div class="footer wrap"></div> # ...
分类:
其他好文 时间:
2021-03-18 14:16:42
阅读次数:
0
client 版本0.1 public class RpcParam implements Serializable { private String name; } 版本0.2 public class RpcParam implements Serializable { private Stri ...
分类:
其他好文 时间:
2021-03-17 14:55:50
阅读次数:
0
我们都知道标准盒模型和怪异盒模型是有不同的 但是知道遇到一个面试题,还是感觉自己理解的不够深刻 面试题: 一个div宽200高100,padding-top为50%,问实际高度为多少? 一道题很多坑: 坑一:不要想当然的是一个盒模型,两个都要答! 坑二:只有50%,没有给父元素高度! 坑三:注意注意 ...
分类:
Web程序 时间:
2021-03-17 14:55:34
阅读次数:
0
基础 基础语法 $(selector).action()$ 文档就绪事件 <script> $(document).ready(function(){ // 开始写 jQuery 代码... }); //简洁写法 $(function(){ // 开始写 JQuery 代码 }) </script> ...
分类:
Web程序 时间:
2021-03-16 13:49:39
阅读次数:
0