Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个工具栏图像(android),然后我想在这个工具栏图像上添加另一个小图像(问号图像)。然后当任何人点击那个小图片时,就会显示一个新页面。我知道如何显示新页面或其他页面。但不知道如何在工具栏图像上设置小图像。我对 CSS 很弱。
那么,有什么建议吗?
使用类似的东西
.smallImage{ position: relative; left: -10px; bottom: 10px; display : hidden; }
然后在工具栏图像之后插入一个 <img />。将其显示设置为在需要时阻止并使用顶部和左侧值使其出现在正确的位置。这里的“相对”是指“相对于父母的位置”。