gpt4 book ai didi

css - 尝试突出显示与 :active pseudoclass in cordova 的触摸

转载 作者:行者123 更新时间:2023-11-28 00:17:25 27 4
gpt4 key购买 nike

我正在尝试使用 :active 突出显示此布局的不同选项。问题是突出显示没有填满整个内容。这是一张图片以及我的 CSS 和 HTML 代码。希望你们能帮助我。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: ms-appdata: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<h1 style="padding-left: 30px; padding-top: 35px"><img src="img/perro.png" style="float:left;width:42px;height:42px; padding-right: 10px;">Bibliografía APA</h1>
</head>
<body>
<button onclick="toggle_visibilityone()" style="float: right">[+]
</button>
<a href="html/libro.html" class="hili" type="button">
<div class="tapp">
LIBRO
</div>
</a>
<p id="p1">Un libro debe poseer 25 hojas mínimo (49 páginas), pues
de 24 hojas sería un folleto y de una hasta cuatro páginas se
consideran hojas sueltas (en una o dos hojas). Caen dentro de esta
categoría los e-books y los audiolibros</p>
<hr>

这是我的 CSS

   *{
-webkit-touch-callout: default;
-webkit-text-size-adjust: none;
-webkit-user-select: text;
-webkit-tap-highlight-color: transparent;
}

body {
width:100%;
height: 100%;
margin: 0%;
padding: 0%;
left: 0%;
top: 0%;
background-color: darkred;
font-size: 18px;
text-align: left;
}

div.tapp:active{
background-color: lightblue;
}


/*Parrafos con descripciones de cada tipo de fuente*/
p{
text-align: center;
background-color: white;
color: black;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 13px;
display: none;
animation-name: fadein;
animation-duration: 1s;
}

@keyframes fadein{
0% {opacity: 0;}
100% {opacity: 1;}
}

/*Enlaces del body*/
.hili{
color: white;
text-decoration: none;
}

/*Botones*/
button{
color: black;
margin-right: 10px;
font-size: 10px;
width: 30px;
height: 15px;
outline: none;
background-color: white;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;

}

/*Título de Bibliografía APA*/
h1{
position: relative;
background-color: rgb(127, 159, 219);
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
'Lucida Sans', Arial, sans-serif;
color: white;
text-align: left;
font-size: 30px;
margin-top: 0px;
height: 70px;
border-bottom-style: solid;
border-color: black;
border-width: 2px;

}

这就是它现在的样子:Image

可能是个愚蠢的问题,但我正在努力学习并且阅读了很多书,但我无法解决它。提前致谢。

最佳答案

由于 .tapp 类只是包装了“LIBRO”文本,因此突出显示并未填充全部内容。

我建议您申请 :active直接为标签的 .hili 设置样式在 css 中规则或添加额外的 .tapp类到 <a>标签。

这将消除对 <div class="tapp"> 的需求完全没有。

因此在您的 html 中,以下内容将产生您想要的结果:

<a href="html/libro.html" class="hili tapp" type="button">LIBRO</a>

编辑:(从评论中清晰可见)

由于您正在尝试将更多元素组合在一起 <hr>标签没有被包括在内,它上面有一个边距。该边距在 :active 之间引入了这个间距突出显示和 <hr> .请参阅以下代码笔。

https://codepen.io/anon/pen/oVBPdw

我还建议不要使用 <hr>您在包含的 div 上使用了 border-bottom。

关于css - 尝试突出显示与 :active pseudoclass in cordova 的触摸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55028109/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com