首页 > 其他分享 >2023.4.7每日总结

2023.4.7每日总结

时间:2023-04-07 20:33:32浏览次数:41  
标签:总结 solid 每日 padding rgb tab 2023.4 font border

<%@ page import="java.util.Calendar" %>
<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
         <title>教学管理系统</title>
         <style type="text/css">
body {
 background-color: #F5DEB3 
}         
table {
    /*表格边框为实线或者是空心双线*/
    border-collapse: collapse;
    /*边框与边框的空间*/
    border-spacing: 0;
    padding: 40px ;
}

a {
    color: rgb(60, 114, 53);
    text-decoration: none;
    font-size: 12px;
}

a:hover {
    color: rgb(60, 114, 53);
    text-decoration: underline;
    font-size: 12px;
}

a:visited {
    color: rgb(0, 106, 78);
    font-size: 12px;
}
/*整个tab层居中,宽度为600px*/
#tabDiv {
    width: 600px;
    height:500px;
    margin: 1em auto;
    padding-bottom: 10px;
    border-right: rgb(30,144,255) 2px solid;
    border-top: rgb(30,144,255) 2px solid;
    border-left: rgb(30,144,255) 2px solid;
    border-bottom: rgb(30,144,255) 2px solid;
    background: #ffffff;
}
/*tab头的样式*/
#tabsHead {
    padding-left: 0px;
    height: 26px;
    background-color: rgb(179, 247, 19);
    font-size: 1em;
    margin: 1px 0px 0px;
    color: rgb(179, 247, 19);
    line-height: 26px;
}
/*已选tab头(超链接)的样式*/
.curtab {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    border-right: rgb(209, 226, 49) 1px solid;
    font-weight: bold;
    float: left;
    cursor: pointer;
    background: #ffffff;
}
/*未选tab头(超链接)的样式*/
.tabs {
    border-right: rgb(209, 226, 49) 1px solid;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-weight: normal;
    float: left;
    cursor: pointer;
}
p {
    font-size: 12pt;
    text-indent: 2em;
}
li {
      border-bottom-style: solid;
      border-bottom-color: #EEE;
      border-bottom-width: thin;
      height: 25px;
    font-family: "宋体";
    font-size: 20pt;
}
</style>
<script type="text/jscript">    
        //显示tab(tabHeadId:tab头中当前的超链接;tabContentId要显示的层ID)
        function showTab(tabHeadId,tabContentId) 
        {
            //tab层
            var tabDiv = document.getElementById("tabDiv");
            //将tab层中所有的内容层设为不可见
            //遍历tab层下的所有子节点
            var taContents = tabDiv.childNodes;
            for(i=0; i<taContents.length; i++) 
            {
                //将所有内容层都设为不可见
                if(taContents[i].id!=null && taContents[i].id != 'tabsHead')
                {
                    taContents[i].style.display = 'none';
                }
            }
            //将要显示的层设为可见
            document.getElementById(tabContentId).style.display = 'block';          
            //遍历tab头中所有的超链接
            var tabHeads = document.getElementById('tabsHead').getElementsByTagName('a');
            for(i=0; i<tabHeads.length; i++) 
            { 
                //将超链接的样式设为未选的tab头样式
                tabHeads[i].className='tabs'; 
            }
            //将当前超链接的样式设为已选tab头样式
            document.getElementById(tabHeadId).className='curtab';
            document.getElementById(tabHeadId).blur();
        }
</script>
</head>
<body>
<h1 align="center">实 验 发 布</h1>
<br><br>
<form action="" method="get">
    <table cellspacing="10" id="tabDiv" border="1" style=";font-size:18px;width:700px">
        <tr>
            <td align="center" colspan="2" style="height:30px">
            标题:<input type="text" size="20" maxlength="12" placeholder="输入实验标题" style="font-size:18px;margin:10px"/>
            </td>
        </tr>
        <tr>
            <td align="center" style="height:30px">
            截止时间为:
            <input type="date" />
            &nbsp;&nbsp;
            <input type="time"/>
            </td>
            <td align="center" style="height:30px">
            <input type="file" name="file"/>
            </td>
        </tr>
        <tr>
            <td align="center">
            请输入实验要求:
            <textarea rows="8" cols="20" name="" style="font-size:25px;margin:10px 15px"></textarea>
            </td>
            <td align="center">
            请输入实验说明:
            <textarea rows="8" cols="20" name="" style="font-size:25px;margin:10px 15px;"></textarea>
            </td>
        </tr>
        <tr>
            <td align="center" colspan="2" style="height:30px">
            <input type="submit" value="发布" style="font-size:14px;margin:5px 10px"/>
            <input type="reset" value="重置" style="font-size:14px;margin:5px 10px"/>
            </td>
        </tr>
    </table>
    </form>
</body>
</html>

 

标签:总结,solid,每日,padding,rgb,tab,2023.4,font,border
From: https://www.cnblogs.com/wllovelmbforever/p/17297265.html

相关文章

  • 今日总结-实现百度云api的调用
    获取的json结果如下:  代码如下:#encoding:utf-8importbase64importrequestsdefgetToken():ak='B7E2OqVuDAyDs7OsuGPuKa4y'sk='idObOz6jqA2GdU49L2VG4VPVhgmiidvD'host=f'https://aip.baidubce.com/oauth/2.0/token?grant_type=c......
  • 每日总结-23.4.7
    字符流入文件(解决中文乱码问题)Filefile=newFile(road);try{FileWriterfileWriter=newFileWriter(file,true);//true代表写入文件不覆盖原文件BufferedWriterbufferedWriter=newBufferedWriter(fileWriter);String......
  • SQL去重的3种实用方法总结
    1.distinct去重注意的点:distinct只能一列去重,当distinct后跟大于1个参数时,他们之间的关系是&&(逻辑与)关系,只有全部条件相同才会去重弊端:当查询的字段比较多时,distinct会作用多个字段,导致去重条件增多selectdistinctUserResultfromTable12.groupby去重去重原理:将重......
  • 计算机网络知识点全面总结(有这一篇就够了!!!)
    1.1计算机网络的分类按照网络的作用范围:广域网(WAN)、城域网(MAN)、局域网(LAN);按照网络使用者:公用网络、专用网络。TCP/IP四层模型与OSI体系结构对比:1.3层次结构设计的基本原则各层之间是相互独立的;每一层需要有足够的灵活性;各层之间完全解耦。1.4计算机网络的性能指标速率:bps=bit/s......
  • IO流中「线程」模型总结
    IO流模块:经常看、经常用、经常忘;一、基础简介在IO流的网络模型中,以常见的「客户端-服务端」交互场景为例;客户端与服务端进行通信「交互」,可能是同步或者异步,服务端进行「流」处理时,可能是阻塞或者非阻塞模式,当然也有自定义的业务流程需要执行,从处理逻辑看就是「读取数据-业务......
  • Oracle操作总结
    Oracle操作总结目录Oracle操作总结一、Oracle表操作1.建表2.修改表名3.修改字段名4.修改数据类型5.增加字段6.删除字段7.多表关联更新二、sqlldr导入数据到Oracle库中1.sqlldr语句2.执行语句参考文档:https://blog.csdn.net/dingguanyi/article/details/82259685一、Oracle表操......
  • h5 - pc 使用 pdf.js 预览pdf -配合文件流实现 - 遇到的坑总结
    1.pdf.js下载看我这篇随笔【h5-使用pdf.js预览pdf-岑惜-博客园(cnblogs.com)】2.html调用页面的局部代码<body><divstyle="height:100vh;margin:0auto"><iframestyle="height:100%;width:100%;border:none"id="fvic"src="&......
  • 常见sql问题总结三
    --查询各科成绩前三名的记录:(不考虑成绩并列情况)--ROW_NUMBER()函数方便统计排序。--ROW_NUMBER()OVER(PARTITIONBYSC.corse_idORDERBYSC.numberDESC)RN根据corse_id分组在进行倒叙排序SELECT*FROM(SELECTSC.student_idSNO,......
  • 自建基于Hadoop+Hive+Spark的离线数仓总结
    整体架构图 服务台账 hadoop1hadoop2hadoop3 172.23.112.160172.23.112.161172.23.112.162HDFSNameNodeDataNodeHDFSNameNodeHTTPUI:9870HDFSDataNodeHTTPUI:9864DataNodeSecondaryNameNodeDataNode http://hadoop1:9870/dfshealth.html#tab-o......
  • IO流中「线程」模型总结
    目录一、基础简介二、同步阻塞1、模型图解2、参考案例三、同步非阻塞1、模型图解2、参考案例四、异步非阻塞1、模型图解2、参考案例五、Reactor模型1、模型图解1.1Reactor设计原理1.2单Reactor单线程1.3单Reactor多线程1.4主从Reactor多线程2、参考案例六、参考源码IO流模块......