无法在DIV元素内选择文本

 莫名其妙520a_416 发布于 2023-01-29 21:21

看看这个页面和我网站上的这个页面。advert不能选择DIV标记中的任何文本。此外,某些文本,尤其是在Incinerator产品页面中,无法在包含YouTube视频topic-diviframe元素上方选择。

以下是相关的HTML:

Incinerator is an app that securely erases files from your hard drive with extreme prejudice. It is capable of obliterating pretty much any file in its way - and yours.

Why Incinerator?

When you normally erase a file on your Mac, more often than not, the file can still be retrieved. Using professional software, even amateur computer users can find potentially dangerous information on your hard drive, such as sensitive documnts, bills, etc. This is because when you erase a file, the file does not "disappear": the operating system simply marks the data as no longer being used, but the data still remains and is accessible until another file is created that writes over the data that previously was there. This means that special software can hunt for these unused data sections and restore them into files. The following video* demonstrates exactly how easy this is:

Because of this threat, it is vital that you write over sensitive files before erasing them, so that anybody who tries to access your hard drive and recover the files will find random data, and not anything potentially sensitive. Incinerator can do this job, and it is available on the Mac App Store totally, 100% free.

Screenshots:

< >

Features:

  • Scaleable Destruction
  • - Have the program write over your file one time, or a thousand.
  • Notifications
  • - Incinerator fully integrates into your OS X desktop, even sending you notifications when your file has been incinerated.
  • Super Secure
    • On the App Store
    • - Incinerator is available on the Mac App Store, so you have full confidence in knowing that it has been approved by the makers of OS X itself - the ultimate seal of Mac compatibility.
    • Sandboxed
    • - A new technology, sandboxing allows each app on your Mac to play nicely together, preventing them from doing rogue things like erasing all of your files. Incinerator only has access to the files you open, giving you a sigh of relief.
    • Signed
    • - The official version of Incinerator is signed by my developer ID issued by Apple. This means it runs without warning on your Mac, with the understanding that if something goes wrong, Apple can pull the certificate, preventing the app from running.
  • Compatible with all New Macs
  • - Yes, that new MacBook Air you bought can run Incinerator. :)

Need help? Don't hesitate to contact me. I can be reached through GitHub, or you can email me.

* - This video and its mentioned commercial software is included as a demonstration to demonstrate the necessity of the product advertised on this page. Its use does not constitute an endorsement of the product contained therein, and I cannot be held resposnsible for any damages that it may incur.

和CSS:

.subnav {
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    height: auto;
    opacity: 0;
    transition: all 0.1s;
    background: #E98D70;
}

.subnav li {
    float: none;
}

.subnav li a {
    border-bottom: 1px solid #2e2e2e;
}

#options:hover .subnav {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

/* Main site */
.float-right {
    float: right;
}

.float-left {
    float: left;
}

#advert {
background-color: rgba(170, 70, 48, 0.75);
}

.main-page-content {
position: absolute;
top: 39px;
left: 0px;
right: 0px;
width: 730px;
z-index:-1;

margin-left: auto;
margin-right: auto;
}

.description {
float:left;
display:block;
}

.on-display {
float:right;
right:25px;
display:inline-block;
}

#topic-div {
margin: 5px;
padding: 5px;

background-color:rgba(170, 70, 48, 0.25);
height:100%;
top:0px;
}

footer {
position: fixed;
bottom: 0;
}

/* YouTube videos */
.video-container {
position: relative;
padding-bottom: 56.25%;
margin: 35px;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

我已经尝试过修改CSS,但是网络上针对该问题的其他答案的所有示例似乎不适用于我。

这似乎也是在一夜之间发生的-它相对较快地中断了,并停止了在OS X上使用最新版本的Safari,Firefox,Chrome和Chromium的工作。

有任何想法吗?

1 个回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有